Uh oh!
There was an error while loading. Please reload this page.
- Notifications
You must be signed in to change notification settings - Fork 8
feat: Migrate codebase and dependencies to Java 17#129
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Uh oh!
There was an error while loading. Please reload this page.
Changes from all commits
35fb1958c5902d076d0d2a34435079ad4c5File filter
Filter by extension
Conversations
Uh oh!
There was an error while loading. Please reload this page.
Jump to
Uh oh!
There was an error while loading. Please reload this page.
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,2 +1,2 @@ | ||
| distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.6.2/apache-maven-3.6.2-bin.zip | ||
| distributionUrl=https://repo.maven.apache.org/maven2/org/apache/maven/apache-maven/3.8.8/apache-maven-3.8.8-bin.zip | ||
| wrapperUrl=https://repo.maven.apache.org/maven2/io/takari/maven-wrapper/0.5.5/maven-wrapper-0.5.5.jar |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -26,16 +26,20 @@ | ||
| <properties> | ||
| <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> | ||
| <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> | ||
| <org.powermock.version>2.0.4</org.powermock.version> | ||
| <org.jboss.resteasy.version>4.6.1.Final</org.jboss.resteasy.version> | ||
| <org.jboss.resteasy.version>4.7.10.Final</org.jboss.resteasy.version> | ||
| <apache.httpclient.version>4.5.14</apache.httpclient.version> | ||
| <jackson.version>2.12.3</jackson.version> | ||
| <okhttp.version>4.9.3</okhttp.version> | ||
| <wiremock.version>2.26.0</wiremock.version> | ||
| <jackson.version>2.17.3</jackson.version> | ||
| <okhttp.version>4.12.0</okhttp.version> | ||
| <wiremock.version>2.35.2</wiremock.version> | ||
| </properties> | ||
| <dependencyManagement> | ||
| <dependencies> | ||
| <dependency> | ||
| <groupId>javax.annotation</groupId> | ||
| <artifactId>javax.annotation-api</artifactId> | ||
| <version>1.3.2</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.apache.httpcomponents</groupId> | ||
| <artifactId>httpclient</artifactId> | ||
| @@ -45,10 +49,15 @@ | ||
| </dependencyManagement> | ||
| <dependencies> | ||
| <dependency> | ||
| <groupId>javax.annotation</groupId> | ||
| <artifactId>javax.annotation-api</artifactId> | ||
| <version>1.3.2</version> | ||
Contributor There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. you can drop version here, it is defined in dependencyManagement | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.projectlombok</groupId> | ||
| <artifactId>lombok</artifactId> | ||
| <version>1.18.10</version> | ||
| <version>1.18.38</version> | ||
| <scope>provided</scope> | ||
| </dependency> | ||
| <dependency> | ||
| @@ -79,24 +88,24 @@ | ||
| <dependency> | ||
| <groupId>org.slf4j</groupId> | ||
| <artifactId>slf4j-api</artifactId> | ||
| <version>1.7.28</version> | ||
| <version>2.0.16</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.slf4j</groupId> | ||
| <artifactId>slf4j-simple</artifactId> | ||
| <version>1.7.28</version> | ||
| <version>2.0.16</version> | ||
| <scope>provided</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>junit</groupId> | ||
| <artifactId>junit</artifactId> | ||
| <version>4.13.1</version> | ||
| <version>4.13.2</version> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>org.mockito</groupId> | ||
| <artifactId>mockito-core</artifactId> | ||
| <version>2.28.2</version> | ||
| <version>5.18.0</version> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| <dependency> | ||
| @@ -107,7 +116,7 @@ | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.github.tomakehurst</groupId> | ||
| <artifactId>wiremock</artifactId> | ||
| <artifactId>wiremock-jre8</artifactId> | ||
| <version>${wiremock.version}</version> | ||
| <scope>test</scope> | ||
| </dependency> | ||
| @@ -118,10 +127,10 @@ | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-compiler-plugin</artifactId> | ||
| <version>3.8.1</version> | ||
| <version>3.13.0</version> | ||
| <configuration> | ||
| <source>1.8</source> | ||
| <target>1.8</target> | ||
| <source>17</source> | ||
| <target>17</target> | ||
| <compilerArgs> | ||
| <arg>-parameters</arg> | ||
| </compilerArgs> | ||
| @@ -130,7 +139,7 @@ | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-gpg-plugin</artifactId> | ||
| <version>1.6</version> | ||
| <version>3.2.7</version> | ||
| <configuration> | ||
| <gpgArguments> | ||
| <gpgArgument>--no-tty</gpgArgument> | ||
| @@ -152,7 +161,7 @@ | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-javadoc-plugin</artifactId> | ||
| <version>3.1.1</version> | ||
| <version>3.11.2</version> | ||
| <configuration> | ||
| <links> | ||
| <link>https://docs.oracle.com/javaee/7/api/</link> | ||
| @@ -226,7 +235,7 @@ | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-release-plugin</artifactId> | ||
| <version>2.5.3</version> | ||
| <version>3.1.1</version> | ||
| <configuration> | ||
| <autoVersionSubmodules>true</autoVersionSubmodules> | ||
| <dryRun>false</dryRun> | ||
| @@ -241,7 +250,7 @@ | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-source-plugin</artifactId> | ||
| <version>3.2.1</version> | ||
| <version>3.3.1</version> | ||
| <executions> | ||
| <execution> | ||
| <id>attach-sources</id> | ||
| @@ -254,7 +263,7 @@ | ||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <artifactId>maven-javadoc-plugin</artifactId> | ||
| <version>3.1.1</version> | ||
| <version>3.11.2</version> | ||
| <executions> | ||
| <execution> | ||
| <id>attach-javadocs</id> | ||
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we have to change the major version of sdk itsefl (
1.26... --> 2.0.0)There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Sure, change the version and a couple more minor tweaks.
The purpose of this PR is to inform everyone that there will be a new major version (since all teams are actively working on updating services).