Skip to content

Commit

Permalink
revert to target 8 (#196)
Browse files Browse the repository at this point in the history
* revert to target 8

* set dependency as provided

---------

Co-authored-by: dennis.mercuriali <dennis.mercuriali@diennea.com>
  • Loading branch information
dmercuriali and dennis.mercuriali committed Jan 9, 2024
1 parent eefb799 commit 040ac37
Show file tree
Hide file tree
Showing 7 changed files with 19 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 17'
- name: 'Set up JDK 11'
uses: actions/setup-java@v1
with:
java-version: '17'
java-version: '11'
- 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 17'
- name: 'Set up JDK 11'
uses: actions/setup-java@v1
with:
java-version: '17'
java-version: '11'
- 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: openjdk17
jdk: openjdk11
script: mvn verify -Dmaven.test.redirectTestOutputToFile=true jacoco:report coveralls:report

branches:
Expand Down
6 changes: 4 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>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<plugins>
Expand Down Expand Up @@ -142,6 +142,8 @@
<groupId>org.bouncycastle</groupId>
<artifactId>bcpkix-jdk15on</artifactId>
<version>${libs.bouncycastle}</version>
<scope>provided</scope>
<optional>true</optional>
</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>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</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>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
<build>
<plugins>
Expand Down
12 changes: 6 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>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<libs.netty4>4.1.94.Final</libs.netty4>
<libs.netty4.tcnative>2.0.62.Final</libs.netty4.tcnative>
<libs.servletapi>4.0.1</libs.servletapi>
Expand Down Expand Up @@ -238,10 +238,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<version>3.10.1</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
<release>17</release>
<release>8</release>
</configuration>
</plugin>
<plugin>
Expand Down Expand Up @@ -297,10 +297,10 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.11.0</version>
<version>3.10.1</version>
<configuration>
<encoding>${project.build.sourceEncoding}</encoding>
<release>17</release>
<release>8</release>
</configuration>
</plugin>
<plugin>
Expand Down

0 comments on commit 040ac37

Please sign in to comment.