-
-
Notifications
You must be signed in to change notification settings - Fork 291
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Just revamping the gradle build to use up-to-date tooling.
None of this changes should change the build logic or output, but will hopefully help maintenance by keeping the build to the latest Gradle's recommendations. - Update the gradle wrapper to version 8.6 - Replace deprecated "version" by "archiveVersion" in the common build config within the jar.manifest.attributes {} - Put all dependencies in the libs.versions.toml catalog - Apply the unit testing dependencies by default to all subprojects in the common build config - Update the checkout and setup-java github actions to the v4 - Run the CI for all branches
- Loading branch information
1 parent
d32faa9
commit 60a4c7b
Showing
14 changed files
with
247 additions
and
168 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
[versions] | ||
junit = "5.9.2" | ||
jackson = "2.16.0" | ||
|
||
[libraries] | ||
jackson-databind = { module = "com.fasterxml.jackson.core:jackson-databind", version.ref = "jackson" } | ||
jackson-annotations = { module = "com.fasterxml.jackson.core:jackson-annotations", version.ref = "jackson" } | ||
httpclient5 = { module = "org.apache.httpcomponents.client5:httpclient5", version = "5.2.1" } | ||
jaxb-api = { module = "javax.xml.bind:jaxb-api", version = "2.4.0-b180830.0359" } | ||
jsr305 = { module = "com.google.code.findbugs:jsr305", version = "3.0.2" } | ||
commons-logging = { module = "commons-logging:commons-logging", version = "1.2" } | ||
groovy-jsr223 = { module = "org.codehaus.groovy:groovy-jsr223", version = "3.0.19" } | ||
kotlin-scripting-jsr223 = { module = "org.jetbrains.kotlin:kotlin-scripting-jsr223", version = "1.8.10" } | ||
jruby-core = { module = "org.jruby:jruby-core", version = "9.4.4.0" } | ||
|
||
# Tests | ||
junit-jupiter = { module = "org.junit.jupiter:junit-jupiter", version.ref = "junit" } | ||
junit-jupiter-params = { module = "org.junit.jupiter:junit-jupiter-params", version.ref = "junit" } | ||
assertj-core = { module = "org.assertj:assertj-core", version = "3.24.2" } | ||
|
||
[bundles] | ||
testing-libs = ["junit-jupiter", "junit-jupiter-params", "assertj-core"] |
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,5 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.6-bin.zip | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
Oops, something went wrong.