Skip to content

Commit 5cf5378

Browse files
authored
Updates in CI and in Gradle tasks (#40)
1 parent 0bde68c commit 5cf5378

File tree

3 files changed

+33
-29
lines changed

3 files changed

+33
-29
lines changed

.github/workflows/gradle.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,11 +26,15 @@ jobs:
2626
- 1.11.6
2727
- 1.11.7
2828
- 1.11.8
29+
- 1.11.9
30+
- 1.11.10
2931
- 1.12.0
3032
- 1.12.1
3133
- 1.12.2
3234
- 1.12.3
3335
- 1.12.4
36+
- 1.12.5
37+
- 1.12.6
3438
- 1.13.0
3539
- 1.13.1
3640
- latest

build.gradle

Lines changed: 28 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
plugins{
1+
plugins {
22
id 'java-library'
33
id 'signing'
44
id 'checkstyle'
@@ -22,7 +22,7 @@ dependencies {
2222
testImplementation('junit:junit:4.13.2')
2323
testImplementation('org.mockito:mockito-core:4.8.0')
2424
testImplementation('org.testcontainers:testcontainers:1.17.5')
25-
testImplementation('org.eclipse.jetty:jetty-server:11.0.12')
25+
testImplementation('org.eclipse.jetty:jetty-server:11.0.14')
2626
testImplementation('org.slf4j:slf4j-api:2.0.3')
2727
testImplementation('org.bouncycastle:bcprov-jdk15on:1.70')
2828
testImplementation('org.bouncycastle:bcpkix-jdk15on:1.70')
@@ -180,31 +180,31 @@ if (hasProperty("publish")) {
180180

181181
developers {
182182
[
183-
developer {
184-
id = 'steve-perkins'
185-
name = 'Steve Perkins'
186-
187-
},
188-
developer {
189-
id = 'steve-perkins-bc'
190-
name = 'Steve Perkins'
191-
192-
},
193-
developer {
194-
id = 'jarrodcodes'
195-
name = 'Jarrod Young'
196-
197-
},
198-
developer {
199-
id = 'tledkov'
200-
name = 'Taras Ledkov'
201-
202-
},
203-
developer {
204-
id = 'henryx'
205-
name = 'Enrico Bianchi'
206-
207-
}
183+
developer {
184+
id = 'steve-perkins'
185+
name = 'Steve Perkins'
186+
187+
},
188+
developer {
189+
id = 'steve-perkins-bc'
190+
name = 'Steve Perkins'
191+
192+
},
193+
developer {
194+
id = 'jarrodcodes'
195+
name = 'Jarrod Young'
196+
197+
},
198+
developer {
199+
id = 'tledkov'
200+
name = 'Taras Ledkov'
201+
202+
},
203+
developer {
204+
id = 'henryx'
205+
name = 'Enrico Bianchi'
206+
207+
}
208208
]
209209
}
210210
}
@@ -228,7 +228,7 @@ if (hasProperty("publish")) {
228228
}
229229

230230
javadoc {
231-
if(JavaVersion.current().isJava9Compatible()) {
231+
if (JavaVersion.current().isJava9Compatible()) {
232232
options.addBooleanOption('html5', true)
233233
}
234234
}

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,4 +3,4 @@ distributionBase=GRADLE_USER_HOME
33
distributionPath=wrapper/dists
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists
6-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.4.1-all.zip
6+
distributionUrl=https://services.gradle.org/distributions/gradle-7.6.1-all.zip

0 commit comments

Comments
 (0)