Skip to content

Commit 116819b

Browse files
committed
Dependency update; build with Java 11
1 parent 08a199f commit 116819b

File tree

3 files changed

+10
-8
lines changed

3 files changed

+10
-8
lines changed

.github/workflows/integration.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,11 @@ jobs:
1212
steps:
1313
- name: Checkout
1414
uses: actions/checkout@v2
15-
- name: Set up JDK 1.8
16-
uses: actions/setup-java@v1
15+
- name: Set up JDK
16+
uses: actions/setup-java@v2
1717
with:
18-
java-version: 1.8
18+
distribution: 'adopt'
19+
java-version: '11'
1920
- name: Cache Gradle packages
2021
uses: actions/cache@v2
2122
with:

.github/workflows/publish.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,11 @@ jobs:
1616
steps:
1717
- name: Checkout
1818
uses: actions/checkout@v2
19-
- name: Set up JDK 1.8
20-
uses: actions/setup-java@v1
19+
- name: Set up JDK
20+
uses: actions/setup-java@v2
2121
with:
22-
java-version: 1.8
22+
distribution: 'adopt'
23+
java-version: '11'
2324
- name: Publish
2425
run: |
2526
chmod +x gradlew

build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
plugins {
22
id 'java-library'
33
id 'checkstyle'
4-
id "com.github.spotbugs" version "4.7.0"
4+
id "com.github.spotbugs" version "4.7.1"
55
id 'maven-publish'
66
id 'signing'
77
id "io.codearte.nexus-staging" version "0.30.0"
88
id 'com.adarshr.test-logger' version '3.0.0'
99
id "com.github.ben-manes.versions" version "0.38.0"
10-
id 'org.sonatype.gradle.plugins.scan' version '2.0.7'
10+
id 'org.sonatype.gradle.plugins.scan' version '2.0.9'
1111
}
1212

1313
group = 'com.imsweb'

0 commit comments

Comments
 (0)