Skip to content

Commit 03f22b5

Browse files
committed
Upgrade to Gradle 9.3.1 and remove some deprecated syntax
1 parent 2f9e430 commit 03f22b5

File tree

5 files changed

+3
-11
lines changed

5 files changed

+3
-11
lines changed

build.gradle

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -149,11 +149,7 @@ project.tasks.register('sourcesJar', Jar) {
149149
jar.archiveClassifier.set(LabKey.SOURCES_CLASSIFIER)
150150
}
151151

152-
project.artifacts {
153-
archives project.tasks.sourcesJar
154-
archives project.tasks.javadocJar
155-
archives project.tasks.fatJar
156-
}
152+
project.tasks.assemble.dependsOn(project.tasks.sourcesJar, project.tasks.javadocJar, project.tasks.fatJar)
157153

158154
def libDescription = "The client-side library for Java developers is a separate JAR from the LabKey Server code base. It can be used by any Java program, including another Java web application."
159155

gradle/wrapper/gradle-wrapper.jar

176 Bytes
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-9.2.1-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.3.1-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

gradlew

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

gradlew.bat

Lines changed: 1 addition & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)