Skip to content

Commit

Permalink
upgraded to target 17 (#194)
Browse files Browse the repository at this point in the history
Co-authored-by: dennis.mercuriali <[email protected]>
  • Loading branch information
dmercuriali and dennis.mercuriali authored Jan 8, 2024
1 parent 12c1de2 commit 3f4adcf
Show file tree
Hide file tree
Showing 7 changed files with 23 additions and 17 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/pr-validation-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v2
- name: 'Set up JDK 11'
- name: 'Set up JDK 17'
uses: actions/setup-java@v1
with:
java-version: '11'
java-version: '17'
- name: 'Cache Maven packages'
uses: actions/cache@v2
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-validation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
with:
access_token: ${{ github.token }}
- uses: actions/checkout@v2
- name: 'Set up JDK 11'
- name: 'Set up JDK 17'
uses: actions/setup-java@v1
with:
java-version: '11'
java-version: '17'
- name: 'Cache Maven packages'
uses: actions/cache@v2
with:
Expand Down
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ cache:
jobs:
include:
- stage: test
jdk: openjdk11
jdk: openjdk17
script: mvn verify -Dmaven.test.redirectTestOutputToFile=true jacoco:report coveralls:report

branches:
Expand Down
9 changes: 7 additions & 2 deletions blazingcache-core/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
<build>
<plugins>
Expand Down Expand Up @@ -138,5 +138,10 @@
<version>${libs.slf4j}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>${libs.bouncycastle}</version>
</dependency>
</dependencies>
</project>
4 changes: 2 additions & 2 deletions blazingcache-jcache/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
<dependencies>
<dependency>
Expand Down
4 changes: 2 additions & 2 deletions blazingcache-services/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@
</licenses>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
<build>
<plugins>
Expand Down
13 changes: 7 additions & 6 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,8 @@
</issueManagement>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<libs.netty4>4.1.72.Final</libs.netty4>
<libs.netty4.tcnative>2.0.46.Final</libs.netty4.tcnative>
<libs.servletapi>4.0.1</libs.servletapi>
Expand All @@ -81,6 +81,7 @@
<libs.spotbugsmaven>4.7.2.0</libs.spotbugsmaven>
<libs.jacoco>0.8.8</libs.jacoco>
<libs.slf4j>2.0.3</libs.slf4j>
<libs.bouncycastle>1.70</libs.bouncycastle>
</properties>
<dependencies>
<dependency>
Expand Down Expand Up @@ -223,10 +224,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<version>3.11.0</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
<release>8</release>
<release>17</release>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -282,10 +283,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.10.1</version>
<version>3.11.0</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
<release>8</release>
<release>17</release>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 3f4adcf

Please sign in to comment.