-
Notifications
You must be signed in to change notification settings - Fork 125
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1228 from jamezp/main-ports
fast track: Port missed fixes that were in release-4.0
- Loading branch information
Showing
4 changed files
with
36 additions
and
35 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -34,7 +34,7 @@ | |
<name>JAX-RS API Repository - Snapshots</name> | ||
<url>https://repo.eclipse.org/content/repositories/jax-rs-api-snapshots/</url> | ||
</snapshotRepository> | ||
</distributionManagement><url>https://github.com/eclipse-ee4j/jaxrs-api</url> | ||
</distributionManagement><url>https://github.com/jakartaee/rest</url> | ||
|
||
<organization> | ||
<name>Eclipse Foundation</name> | ||
|
@@ -46,13 +46,13 @@ | |
<id>developers</id> | ||
<name>JAX-RS API Developers</name> | ||
<email>[email protected]</email> | ||
<url>https://github.com/eclipse-ee4j/jaxrs-api/graphs/contributors</url> | ||
<url>https://github.com/jakartaee/rest/graphs/contributors</url> | ||
</developer> | ||
</developers> | ||
|
||
<issueManagement> | ||
<system>Github</system> | ||
<url>https://github.com/eclipse-ee4j/jaxrs-api/issues</url> | ||
<url>https://github.com/jakartaee/rest/issues</url> | ||
</issueManagement> | ||
|
||
<mailingLists> | ||
|
@@ -76,8 +76,8 @@ | |
</licenses> | ||
|
||
<scm> | ||
<connection>scm:git:https://github.com/eclipse-ee4j/jaxrs-api</connection> | ||
<url>https://github.com/eclipse-ee4j/jaxrs-api</url> | ||
<connection>scm:git:https://github.com/jakartaee/rest</connection> | ||
<url>https://github.com/jakartaee/rest</url> | ||
<tag>HEAD</tag> | ||
</scm> | ||
<properties> | ||
|
@@ -87,9 +87,17 @@ | |
<apidocs.title>Jakarta RESTful Web Services ${spec.version} API Specification ${spec.version.revision}</apidocs.title> | ||
<legal.doc.folder>${project.basedir}</legal.doc.folder> | ||
|
||
<maven.bundle.plugin.version>3.5.0</maven.bundle.plugin.version> | ||
<maven.compiler.plugin.version>3.8.1</maven.compiler.plugin.version> | ||
<maven.javadoc.plugin.version>3.1.0</maven.javadoc.plugin.version> | ||
<build.helper.maven.plugin.version>3.5.0</build.helper.maven.plugin.version> | ||
<buildernumber.maven.plugin.version>3.2.0</buildernumber.maven.plugin.version> | ||
<glassfish.copyright.maven.plugin.version>2.4</glassfish.copyright.maven.plugin.version> | ||
<maven.bundle.plugin.version>5.1.9</maven.bundle.plugin.version> | ||
<maven.checkstyle.plugin.version>3.3.1</maven.checkstyle.plugin.version> | ||
<maven.compiler.plugin.version>3.12.1</maven.compiler.plugin.version> | ||
<maven.jar.plugin.version>3.3.0</maven.jar.plugin.version> | ||
<maven.jxr.plugin.version>3.3.2</maven.jxr.plugin.version> | ||
<maven.javadoc.plugin.version>3.6.3</maven.javadoc.plugin.version> | ||
<maven.source.plugin.version>3.3.0</maven.source.plugin.version> | ||
<maven.surefire.plugin.version>3.2.5</maven.surefire.plugin.version> | ||
|
||
<api.package>jakarta.ws.rs</api.package> | ||
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
|
@@ -104,11 +112,16 @@ | |
<concurrent.api.version>2.0.0</concurrent.api.version> | ||
<xml.binding.api.version>4.0.0</xml.binding.api.version> | ||
<cdi.api.version>3.0.0</cdi.api.version> | ||
<junit.version>5.8.2</junit.version> | ||
<junit.version>5.10.2</junit.version> | ||
<org.glassfish.jaxb.version>4.0.3</org.glassfish.jaxb.version> | ||
<com.sun.istack.version>4.1.2</com.sun.istack.version> | ||
<hamcrest.version>2.2</hamcrest.version> | ||
<mockito.version>3.6.0</mockito.version> | ||
<mockito.version>5.11.0</mockito.version> | ||
|
||
<!-- Documentation versions --> | ||
<asciidoctorj.maven.plugin.version>3.0.0</asciidoctorj.maven.plugin.version> | ||
<asciidoctorj.version>2.5.11</asciidoctorj.version> | ||
<asciidoctorj.pdf.version>2.3.13</asciidoctorj.pdf.version> | ||
</properties> | ||
|
||
<modules> | ||
|
@@ -303,20 +316,20 @@ | |
<plugins> | ||
<plugin> | ||
<artifactId>maven-compiler-plugin</artifactId> | ||
<version>3.11.0</version> | ||
<version>${maven.compiler.plugin.version}</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-jar-plugin</artifactId> | ||
<version>3.3.0</version> | ||
<version>${maven.jar.plugin.version}</version> | ||
</plugin> | ||
<plugin> | ||
<artifactId>maven-surefire-plugin</artifactId> | ||
<version>3.2.5</version> | ||
<version>${maven.surefire.plugin.version}</version> | ||
</plugin> | ||
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>buildnumber-maven-plugin</artifactId> | ||
<version>1.4</version> | ||
<version>${buildernumber.maven.plugin.version}</version> | ||
<configuration> | ||
<format>{0,date,MM/dd/yyyy hh:mm aa}</format> | ||
<items> | ||
|
@@ -390,7 +403,7 @@ | |
</plugin> | ||
<plugin> | ||
<artifactId>maven-source-plugin</artifactId> | ||
<version>3.2.1</version> | ||
<version>${maven.source.plugin.version}</version> | ||
<executions> | ||
<execution> | ||
<id>attach-sources</id> | ||
|
@@ -403,7 +416,7 @@ | |
<plugin> | ||
<groupId>org.codehaus.mojo</groupId> | ||
<artifactId>build-helper-maven-plugin</artifactId> | ||
<version>3.2.0</version> | ||
<version>${build.helper.maven.plugin.version}</version> | ||
<executions> | ||
<execution> | ||
<id>add-legal-resource</id> | ||
|
@@ -428,7 +441,7 @@ | |
</plugin> | ||
<plugin> | ||
<artifactId>maven-jxr-plugin</artifactId> | ||
<version>2.5</version> | ||
<version>${maven.jxr.plugin.version}</version> | ||
<executions> | ||
<execution> | ||
<goals> | ||
|
@@ -440,7 +453,7 @@ | |
</plugin> | ||
<plugin> | ||
<artifactId>maven-checkstyle-plugin</artifactId> | ||
<version>3.1.2</version> | ||
<version>${maven.checkstyle.plugin.version}</version> | ||
<configuration> | ||
<outputDirectory>${project.build.directory}/checkstyle</outputDirectory> | ||
<outputFile>${project.build.directory}/checkstyle/checkstyle-result.xml</outputFile> | ||
|
@@ -459,7 +472,7 @@ | |
<plugin> | ||
<groupId>org.glassfish.copyright</groupId> | ||
<artifactId>glassfish-copyright-maven-plugin</artifactId> | ||
<version>1.39</version> | ||
<version>${glassfish.copyright.maven.plugin.version}</version> | ||
<configuration> | ||
<excludeFile>${basedir}/../etc/config/copyright-exclude</excludeFile> | ||
<!--svn|mercurial|git - defaults to svn--> | ||
|