Skip to content

Commit 0ca90b7

Browse files
committed
Merge #521 from branch '518-java11compat' of github.com:metafacture/metafacture-core
2 parents cfafdea + 458aa2f commit 0ca90b7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ jobs:
66
runs-on: ubuntu-latest
77
steps:
88
- uses: actions/checkout@v2
9-
- name: Set up JDK 1.8
9+
- name: Set up JDK 11
1010
uses: actions/setup-java@v1
1111
with:
12-
java-version: 1.8
12+
java-version: 11
1313
- name: Build with gradle
1414
run: ./gradlew check

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
- uses: actions/checkout@v2
1111
- uses: actions/setup-java@v1
1212
with:
13-
java-version: 1.8
13+
java-version: 11
1414
- name: Publish package
1515
run: ./gradlew publishAllPublicationsToGitHubPackagesRepository
1616
env:

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ subprojects {
3030
'commons_compress': '1.21',
3131
'guava': '29.0-jre',
3232
'jackson_databind': '2.15.1',
33-
'jdk': '8',
33+
'jdk': '11',
3434
'junit': '4.12',
3535
'mockito': '2.27.0',
3636
'slf4j': '1.7.36',

0 commit comments

Comments
 (0)