Skip to content

Commit

Permalink
Move back to Java 11
Browse files Browse the repository at this point in the history
  • Loading branch information
lukas-krecan committed Oct 3, 2022
1 parent 4af125b commit df04e04
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,12 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
java: [ '17', '19']
java: [ '11', '17', '19']
# Kotlin needs access to java.util
include:
- java: '11'
maven-opts: ''
maven-params: -pl '!spring/test/shedlock-springboot-future-test,!providers/neo4j/shedlock-provider-neo4j'
- java: '17'
maven-opts: --add-opens java.base/java.util=ALL-UNNAMED
maven-params: ''
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
<properties>
<spring.version>5.3.23</spring.version>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<jdk.version>17</jdk.version>
<jdk.version>11</jdk.version>
<spring-boot-current.version>2.7.4</spring-boot-current.version>
<junit.ver>5.8.2</junit.ver>
<test-containers.ver>1.17.4</test-containers.ver>
Expand Down
2 changes: 1 addition & 1 deletion spring/test/shedlock-springboot-future-test/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>3.0.0-M4</version>
<version>3.0.0-M5</version>
<type>pom</type>
<scope>import</scope>
</dependency>
Expand Down

0 comments on commit df04e04

Please sign in to comment.