Skip to content

Commit

Permalink
Update Gradle to 8.10.1
Browse files Browse the repository at this point in the history
  • Loading branch information
squid233 committed Sep 14, 2024
1 parent a1bbe52 commit a9098bf
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// last updated: 2024/7/21
// last updated: 2024/9/14

plugins {
`java-library`
Expand Down Expand Up @@ -169,7 +169,9 @@ if (hasJavadocJar.toBoolean()) {

tasks.withType<Jar> {
archiveBaseName = projArtifactId
from(rootProject.file(projLicenseFileName)).rename(projLicenseFileName, "${projLicenseFileName}_$projArtifactId")
from(rootProject.file(projLicenseFileName)) {
rename(projLicenseFileName, "${projLicenseFileName}_$projArtifactId")
}
}

if (hasPublication.toBoolean() && publicationRepo != null) {
Expand Down
2 changes: 1 addition & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down

0 comments on commit a9098bf

Please sign in to comment.