Skip to content

Commit 7f8f43c

Browse files
Upgrade Gradle to 8.12.1 and other dependencies (#982)
* Upgraded Gradle to 8.12.1 and other dependencies - Upgraded Bouncy Castle from 1.78.1 to 1.80 - Upgraded Apache SSHD from 2.12.1 to 2.14.0 - Upgraded SLF4J from 2.0.13 to 2.0.16 - Upgraded Logback from 1.3.14 to 1.3.15 - Upgraded Testcontainers from 1.19.8 to 1.20.4 * Upgraded github-info plugin from 1.5.0 to 2.0.0 * Upgraded Gradle Wrapper scripts for 8.12.1 --------- Co-authored-by: Jeroen van Erp <jeroen@hierynomus.com>
1 parent 5ff27ec commit 7f8f43c

File tree

5 files changed

+67
-43
lines changed

5 files changed

+67
-43
lines changed

build.gradle

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ plugins {
99
id 'pl.allegro.tech.build.axion-release' version '1.15.3'
1010
id "com.github.hierynomus.license" version "0.16.1"
1111
id "com.bmuschko.docker-remote-api" version "9.2.1"
12-
id 'ru.vyarus.github-info' version '1.5.0'
12+
id 'ru.vyarus.github-info' version '2.0.0'
1313
id "io.github.gradle-nexus.publish-plugin" version "1.3.0"
1414
}
1515

@@ -22,6 +22,11 @@ repositories {
2222
mavenCentral()
2323
}
2424

25+
github {
26+
user 'hierynomus'
27+
license 'Apache'
28+
}
29+
2530
scmVersion {
2631
tag {
2732
prefix = 'v'
@@ -41,11 +46,11 @@ compileJava {
4146

4247
configurations.implementation.transitive = false
4348

44-
def bouncycastleVersion = "1.78.1"
45-
def sshdVersion = "2.12.1"
49+
def bouncycastleVersion = "1.80"
50+
def sshdVersion = "2.14.0"
4651

4752
dependencies {
48-
implementation "org.slf4j:slf4j-api:2.0.13"
53+
implementation "org.slf4j:slf4j-api:2.0.16"
4954
implementation "org.bouncycastle:bcprov-jdk18on:$bouncycastleVersion"
5055
implementation "org.bouncycastle:bcpkix-jdk18on:$bouncycastleVersion"
5156
implementation "com.hierynomus:asn-one:0.6.0"
@@ -85,15 +90,15 @@ testing {
8590
configureEach {
8691
useJUnitJupiter()
8792
dependencies {
88-
implementation "org.slf4j:slf4j-api:2.0.13"
93+
implementation "org.slf4j:slf4j-api:2.0.16"
8994
implementation 'org.spockframework:spock-core:2.3-groovy-3.0'
9095
implementation "org.mockito:mockito-core:4.11.0"
9196
implementation "org.assertj:assertj-core:3.24.2"
9297
implementation "ru.vyarus:spock-junit5:1.2.0"
9398
implementation "org.apache.sshd:sshd-core:$sshdVersion"
9499
implementation "org.apache.sshd:sshd-sftp:$sshdVersion"
95100
implementation "org.apache.sshd:sshd-scp:$sshdVersion"
96-
implementation "ch.qos.logback:logback-classic:1.3.14"
101+
implementation "ch.qos.logback:logback-classic:1.3.15"
97102
implementation 'org.glassfish.grizzly:grizzly-http-server:3.0.1'
98103
}
99104

@@ -129,8 +134,8 @@ testing {
129134
integrationTest(JvmTestSuite) {
130135
dependencies {
131136
implementation project()
132-
implementation 'org.testcontainers:testcontainers:1.19.8'
133-
implementation 'org.testcontainers:junit-jupiter:1.19.8'
137+
implementation 'org.testcontainers:testcontainers:1.20.4'
138+
implementation 'org.testcontainers:junit-jupiter:1.20.4'
134139
}
135140

136141
sources {
@@ -202,11 +207,6 @@ sourcesJar {
202207
}
203208
}
204209

205-
github {
206-
user 'hierynomus'
207-
license 'Apache'
208-
}
209-
210210
publishing {
211211
publications {
212212
maven(MavenPublication) {

gradle/wrapper/gradle-wrapper.jar

-15.9 KB
Binary file not shown.
Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.2-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12.1-bin.zip
4+
networkTimeout=10000
5+
validateDistributionUrl=true
46
zipStoreBase=GRADLE_USER_HOME
57
zipStorePath=wrapper/dists

gradlew

Lines changed: 30 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gradlew.bat

Lines changed: 21 additions & 16 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)