Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: sentrysoftware/http
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v1.0.01
Choose a base ref
...
head repository: sentrysoftware/http
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: main
Choose a head ref
  • 10 commits
  • 1 file changed
  • 5 contributors

Commits on Jan 26, 2024

  1. Copy the full SHA
    8df96e5 View commit details
  2. Merge pull request #15 from sentrysoftware/release/v1.0.01

    Release v1.0.01 and prepare v1.1.00-SNAPSHOT
    NassimBtk authored Jan 26, 2024
    Copy the full SHA
    600c632 View commit details

Commits on May 20, 2024

  1. Copy the full SHA
    029e7d8 View commit details

Commits on May 21, 2024

  1. Merge pull request #18 from sentrysoftware/feature/implement-oss-parent

    Updated POM to be oss-parent based. Started at version 2.
    ChristopheClermont authored May 21, 2024
    Copy the full SHA
    76374a2 View commit details

Commits on May 28, 2024

  1. Copy the full SHA
    ce11381 View commit details

Commits on May 30, 2024

  1. Copy the full SHA
    31838de View commit details
  2. Fixed compilation error on Java 8. Added Maven Compiler Plugin config…

    …uration for Java 8 with an empty release property.
    ChristopheClermont committed May 30, 2024
    Copy the full SHA
    a4206d4 View commit details

Commits on Aug 14, 2024

  1. Bump org.junit:junit-bom from 5.10.1 to 5.11.0

    Bumps [org.junit:junit-bom](https://github.com/junit-team/junit5) from 5.10.1 to 5.11.0.
    - [Release notes](https://github.com/junit-team/junit5/releases)
    - [Commits](junit-team/junit5@r5.10.1...r5.11.0)
    
    ---
    updated-dependencies:
    - dependency-name: org.junit:junit-bom
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <support@github.com>
    dependabot[bot] authored Aug 14, 2024
    Copy the full SHA
    658e8db View commit details

Commits on Feb 7, 2025

  1. Merge pull request #19 from sentrysoftware/feature/implement-oss-parent

    Fixed updated POM. Added maven.compiler.release property.
    NassimBtk authored Feb 7, 2025
    Copy the full SHA
    6aae0ca View commit details

Commits on Feb 18, 2025

  1. Merge pull request #21 from sentrysoftware/dependabot/maven/org.junit…

    …-junit-bom-5.11.0
    
    Bump org.junit:junit-bom from 5.10.1 to 5.11.0
    NassimBtk authored Feb 18, 2025
    Copy the full SHA
    e6c814c View commit details
Showing with 24 additions and 289 deletions.
  1. +24 −289 pom.xml
313 changes: 24 additions & 289 deletions pom.xml
Original file line number Diff line number Diff line change
@@ -1,12 +1,18 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>

<parent>
<groupId>org.sentrysoftware</groupId>
<artifactId>oss-parent</artifactId>
<version>2</version>
</parent>

<groupId>org.sentrysoftware</groupId>
<artifactId>http</artifactId>
<version>1.1.00-SNAPSHOT</version>

<name>HTTP Java Client</name>
<version>1.0.01</version>
<description>HTTP Client for Java</description>
<packaging>jar</packaging>

<organization>
<name>Sentry Software</name>
@@ -16,17 +22,6 @@
<url>https://sentrysoftware.org/http</url>
<inceptionYear>2023</inceptionYear>

<distributionManagement>
<snapshotRepository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/content/repositories/snapshots</url>
</snapshotRepository>
<repository>
<id>ossrh</id>
<url>https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/</url>
</repository>
</distributionManagement>

<licenses>
<license>
<name>Apache-2.0</name>
@@ -43,7 +38,7 @@
<scm>
<connection>scm:git:https://github.com/sentrysoftware/http.git</connection>
<url>https://github.com/sentrysoftware/http</url>
<tag>v1.0.01</tag>
<tag>HEAD</tag>
</scm>

<developers>
@@ -78,25 +73,20 @@
</developers>

<properties>
<!-- Java 8 -->
<maven.compiler.release />

<!-- UTF-8 -->
<project.build.encoding>UTF-8</project.build.encoding>
<project.build.sourceEncoding>${project.build.encoding}</project.build.sourceEncoding>
<project.build.resourceEncoding>${project.build.encoding}</project.build.resourceEncoding>
<!-- Java 8 & 17 -->
<maven.compiler.release>17</maven.compiler.release>

<!-- Reproducible Build -->
<!-- See https://maven.apache.org/guides/mini/guide-reproducible-builds.html -->
<project.build.outputTimestamp>2024-01-26T10:15:20Z</project.build.outputTimestamp>
<project.build.outputTimestamp>2024-01-26T10:16:17Z</project.build.outputTimestamp>
</properties>

<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.junit</groupId>
<artifactId>junit-bom</artifactId>
<version>5.10.1</version>
<version>5.11.0</version>
<type>pom</type>
<scope>import</scope>
</dependency>
@@ -130,7 +120,6 @@
<!-- javadoc -->
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.6.3</version>
<configuration>
<detectJavaApiLink>false</detectJavaApiLink>
<release>8</release>
@@ -155,8 +144,18 @@
<!-- compiler -->
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.12.1</version>
<executions>
<execution>
<id>default-compile</id>
<phase>compile</phase>
<goals>
<goal>compile</goal>
</goals>
<configuration>
<release>${null}<!-- keep empty to force target Java 8 --></release>
<target>1.8</target>
</configuration>
</execution>
<execution>
<id>compile-java-21</id>
<phase>compile</phase>
@@ -175,76 +174,9 @@
</executions>
</plugin>

<!-- source -->
<plugin>
<artifactId>maven-source-plugin</artifactId>
<version>3.3.0</version>
<executions>
<execution>
<id>attach-sources</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

<!-- resource -->
<plugin>
<artifactId>maven-resources-plugin</artifactId>
<version>3.3.1</version>
</plugin>

<!-- license -->
<plugin>
<groupId>org.codehaus.mojo</groupId>
<artifactId>license-maven-plugin</artifactId>
<version>2.3.0</version>
<configuration>
<licenseName>apache_v2</licenseName>
<copyrightOwners>Sentry Software</copyrightOwners>
<copyrightStringFormat>Copyright %1$s %2$s</copyrightStringFormat>
<includes>
<include>main/java/**/*.java</include>
</includes>
<trimHeaderLine>true</trimHeaderLine>
<canUpdateCopyright>true</canUpdateCopyright>
<canUpdateDescription>true</canUpdateDescription>
<processStartTag>╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲</processStartTag>
<sectionDelimiter>჻჻჻჻჻჻</sectionDelimiter>
<processEndTag>╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱╲╱</processEndTag>
</configuration>
<executions>
<execution>
<id>check-license</id>
<phase>process-sources</phase>
<goals>
<goal>check-file-header</goal>
</goals>
<configuration>
<failOnMissingHeader>true</failOnMissingHeader>
</configuration>
</execution>
</executions>
</plugin>

<!-- javadoc -->
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>

<!-- surefire -->
<plugin>
<artifactId>maven-surefire-plugin</artifactId>
<version>3.2.3</version>
<configuration>
<argLine>
--add-exports java.base/sun.net.www.protocol.http=ALL-UNNAMED
@@ -253,23 +185,9 @@
</configuration>
</plugin>

<!-- site -->
<plugin>
<artifactId>maven-site-plugin</artifactId>
<version>3.12.1</version>
<dependencies>
<dependency>
<groupId>org.sentrysoftware.maven</groupId>
<artifactId>maven-skin-tools</artifactId>
<version>1.3.00</version>
</dependency>
</dependencies>
</plugin>

<!-- jar -->
<plugin>
<artifactId>maven-jar-plugin</artifactId>
<version>3.3.0</version>
<configuration>
<archive>
<manifestEntries>
@@ -280,190 +198,7 @@
</configuration>
</plugin>

<!-- install -->
<plugin>
<artifactId>maven-install-plugin</artifactId>
<version>3.1.1</version>
</plugin>

<!-- deploy -->
<plugin>
<artifactId>maven-deploy-plugin</artifactId>
<version>3.1.1</version>
</plugin>

</plugins>
</build>

<reporting>
<plugins>

<!-- jxr: creates XRef links -->
<plugin>
<artifactId>maven-jxr-plugin</artifactId>
<version>3.3.2</version>
</plugin>

<!-- checkstyle -->
<plugin>
<artifactId>maven-checkstyle-plugin</artifactId>
<version>3.3.1</version>
<configuration>
<sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
<linkXref>true</linkXref>
<configLocation>checkstyle.xml</configLocation>
</configuration>
</plugin>

<!-- pmd -->
<plugin>
<artifactId>maven-pmd-plugin</artifactId>
<version>3.21.2</version>
<configuration>
<linkXref>true</linkXref>
<sourceEncoding>${project.build.sourceEncoding}</sourceEncoding>
<minimumTokens>50</minimumTokens>
<targetJdk>8</targetJdk>
</configuration>
</plugin>

<!-- spotbugs -->
<plugin>
<groupId>com.github.spotbugs</groupId>
<artifactId>spotbugs-maven-plugin</artifactId>
<version>4.8.2.0</version>
</plugin>

<!-- changelog -->
<plugin>
<artifactId>maven-changelog-plugin</artifactId>
<version>2.3</version>
</plugin>

<!-- surefire -->
<plugin>
<artifactId>maven-surefire-report-plugin</artifactId>
<version>3.2.3</version>
</plugin>

<!-- javadoc -->
<plugin>
<artifactId>maven-javadoc-plugin</artifactId>
<reportSets>
<reportSet>
<reports>
<report>javadoc</report>
</reports>
</reportSet>
</reportSets>
</plugin>

<!-- Default project-info-reports -->
<plugin>
<artifactId>maven-project-info-reports-plugin</artifactId>
<version>3.5.0</version>
<reportSets>
<reportSet>
<reports>
<report>ci-management</report>
<report>dependencies</report>
<report>dependency-info</report>
<report>distribution-management</report>
<report>issue-management</report>
<report>licenses</report>
<report>plugins</report>
<report>scm</report>
<report>summary</report>
<report>team</report>
</reports>
</reportSet>
</reportSets>
</plugin>

</plugins>
</reporting>

<profiles>

<!-- Profile for releasing the project -->
<profile>
<id>release</id>
<build>
<plugins>

<!-- artifact (Reproducible Build) -->
<plugin>
<artifactId>maven-artifact-plugin</artifactId>
<version>3.5.0</version>
<executions>
<execution>
<id>buildinfo</id>
<phase>verify</phase>
<goals>
<goal>buildinfo</goal>
</goals>
<configuration>
<reproducible>true</reproducible>
</configuration>
</execution>
</executions>
</plugin>

<!-- gpg to sign the released artifacts -->
<plugin>
<artifactId>maven-gpg-plugin</artifactId>
<version>3.1.0</version>
<executions>
<execution>
<id>sign-artifacts</id>
<phase>verify</phase>
<goals>
<goal>sign</goal>
</goals>
<configuration>
<updateReleaseInfo>true</updateReleaseInfo>
<gpgArguments>
<arg>--pinentry-mode</arg>
<arg>loopback</arg>
</gpgArguments>
</configuration>
</execution>
</executions>
</plugin>

<!-- nexus-staging (Sonatype) -->
<plugin>
<groupId>org.sonatype.plugins</groupId>
<artifactId>nexus-staging-maven-plugin</artifactId>
<version>1.6.13</version>
<extensions>true</extensions>
<configuration>
<serverId>ossrh</serverId>
<nexusUrl>https://s01.oss.sonatype.org</nexusUrl>
<autoReleaseAfterClose>${env.AUTO_RELEASE_AFTER_CLOSE}</autoReleaseAfterClose>
</configuration>
</plugin>

<!-- release -->
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-release-plugin</artifactId>
<version>3.0.1</version>
<configuration>
<tagNameFormat>v@{project.version}</tagNameFormat>
</configuration>
<executions>
<execution>
<id>default</id>
<goals>
<goal>perform</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
</profile>
</profiles>

</project>