Skip to content

Commit 6b6b859

Browse files
committed
Updated dependencies.
1 parent 6bd3ac8 commit 6b6b859

8 files changed

Lines changed: 39 additions & 30 deletions

File tree

.github/workflows/integration.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
uses: actions/setup-java@v3
1919
with:
2020
distribution: 'adopt'
21-
java-version: '21'
21+
java-version: '25'
2222
- name: Cache Gradle packages
2323
uses: actions/cache@v3
2424
with:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
uses: actions/setup-java@v3
2121
with:
2222
distribution: 'adopt'
23-
java-version: '21'
23+
java-version: '25'
2424
cache: 'gradle'
2525

2626
- name: Publish

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
## SEER*Utils Version History
22

3+
**Changes in version 5.8 (not released yet)**
4+
5+
- Changed the minimum Java language for this library from Java 11 to Java 21.
6+
- Updated dependencies.
7+
38
**Changes in version 5.7**
49

510
- Change unzip method to be safe about zip-bombs

build.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,10 @@ import com.vanniktech.maven.publish.*
33
plugins {
44
id 'java-library'
55
id 'jacoco'
6-
id 'com.vanniktech.maven.publish' version '0.34.0' // publish to Maven Central
7-
id 'com.github.ben-manes.versions' version '0.52.0' // check for out-of-date dependencies (run 'dependencyUpdates' manually)
8-
id 'com.github.spotbugs' version '6.4.2' // spotbugs code analysis
9-
id 'org.sonarqube' version '6.3.1.5724' // sonarQube analysis
6+
id 'com.vanniktech.maven.publish' version '0.36.0' // publish to Maven Central
7+
id 'com.github.ben-manes.versions' version '0.53.0' // check for out-of-date dependencies (run 'dependencyUpdates' manually)
8+
id 'com.github.spotbugs' version '6.4.8' // spotbugs code analysis
9+
id 'org.sonarqube' version '7.2.2.6593' // sonarQube analysis
1010
}
1111

1212
group = 'com.imsweb'
@@ -20,16 +20,16 @@ repositories {
2020
}
2121

2222
dependencies {
23-
implementation 'org.apache.commons:commons-lang3:3.18.0'
23+
implementation 'org.apache.commons:commons-lang3:3.20.0'
2424
implementation 'org.apache.commons:commons-compress:1.28.0'
25-
implementation 'commons-io:commons-io:2.20.0'
25+
implementation 'commons-io:commons-io:2.21.0'
2626

2727
testImplementation 'junit:junit:4.13.2'
2828
}
2929

3030
java {
31-
sourceCompatibility = JavaVersion.VERSION_11
32-
targetCompatibility = JavaVersion.VERSION_11
31+
sourceCompatibility = JavaVersion.VERSION_21
32+
targetCompatibility = JavaVersion.VERSION_21
3333
}
3434

3535
tasks.withType(JavaCompile).configureEach {
@@ -93,7 +93,7 @@ tasks.named("dependencyUpdates").configure {
9393

9494
// needed to deploy to Maven Central Portal
9595
mavenPublishing {
96-
configure(new JavaLibrary(new JavadocJar.Javadoc(), true))
96+
configure(new JavaLibrary(new JavadocJar.Javadoc(), new SourcesJar.Sources()))
9797

9898
publishToMavenCentral(true)
9999
signAllPublications()
@@ -130,6 +130,6 @@ mavenPublishing {
130130

131131
// Gradle wrapper, this allows to build the project without having to install Gradle!
132132
wrapper {
133-
gradleVersion = '8.14'
133+
gradleVersion = '9.2.1'
134134
distributionType = Wrapper.DistributionType.ALL
135135
}

gradle/wrapper/gradle-wrapper.jar

-19.5 KB
Binary file not shown.

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14-all.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.2.1-all.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

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

gradlew.bat

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

0 commit comments

Comments
 (0)