Skip to content
This repository was archived by the owner on Mar 10, 2022. It is now read-only.

Commit 27afbe7

Browse files
committed
Fixed bug with JDK 17
1 parent 99f1108 commit 27afbe7

File tree

9 files changed

+10
-10
lines changed

9 files changed

+10
-10
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
pull_request:
88

99
env:
10-
JAVA_VERSION: 16
10+
JAVA_VERSION: 17
1111

1212
jobs:
1313
lint:

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ on:
1515
- cron: '17 10 * * 1'
1616

1717
env:
18-
JAVA_VERSION: 16
18+
JAVA_VERSION: 17
1919

2020
jobs:
2121
analyze:

.github/workflows/javadocs.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ on:
88
paths-ignore: [ '**.md' ]
99

1010
env:
11-
JAVA_VERSION: 11
11+
JAVA_VERSION: 17
1212

1313
jobs:
1414
check:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ These instructions will get you a copy of the project up and running on your loc
3333
What things you need to install the software and how to install them
3434

3535
* A Java IDE ([IntelliJ IDEA](https://www.jetbrains.com/idea/))
36-
* [JDK 11](https://adoptopenjdk.net/index.html)
36+
* [JDK 17](https://adoptium.net/)
3737
* [Git](https://git-scm.com/)
3838

3939
### Installing

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
buildscript {
22
ext {
3-
novaVersion = 'edge'
3+
novaVersion = '3.0.2'
44
freefairVersion = '6.2.0'
55
springBootVersion = '2.6.1'
66
springDocVersion = '1.5.10'

config-processor/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,6 @@ plugins {
33

44
dependencies {
55
implementation 'org.yaml:snakeyaml:1.29'
6-
compileOnly 'com.google.auto.service:auto-service:1.0'
6+
compileOnly 'com.google.auto.service:auto-service:1.0.1'
77
annotationProcessor 'com.google.auto.service:auto-service:1.0-rc7'
88
}

docker/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG JAVA_VERSION=16
1+
ARG JAVA_VERSION=17
22
ARG JVM_IMPL=hotspot
33
ARG SERVICE_NAME=server
44

docker/Dockerfile.github-actions

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
ARG JAVA_VERSION=16
1+
ARG JAVA_VERSION=17
22
ARG JVM_IMPL=hotspot
33

44
FROM adoptopenjdk:${JAVA_VERSION}-jre-${JVM_IMPL} AS extractor

gradle/java.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ repositories {
1515
}
1616
}
1717

18-
sourceCompatibility = JavaVersion.VERSION_11
19-
targetCompatibility = JavaVersion.VERSION_11
18+
sourceCompatibility = JavaVersion.VERSION_17
19+
targetCompatibility = JavaVersion.VERSION_17
2020

2121
dependencies {
2222
}

0 commit comments

Comments
 (0)