Skip to content

Commit 76138af

Browse files
committed
Update to Gradle 7.2
1 parent 7200a7a commit 76138af

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

Diff for: build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ dependencies {
3737
task sourcesJar(type: Jar, dependsOn: classes) {
3838
from sourceSets.main.allSource
3939
classifier 'sources'
40-
extension 'jar'
40+
archiveExtension = 'jar'
4141
}
4242

4343
task javadocJar(type: Jar, dependsOn: javadoc) {
4444
from javadoc.destinationDir
4545
classifier 'javadoc'
46-
extension 'jar'
46+
archiveExtension = 'jar'
4747
}
4848

4949
task copyGemjar(type: Copy, dependsOn: sourcesJar) {

Diff for: gradle/wrapper/gradle-wrapper.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-5.6.4-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

0 commit comments

Comments
 (0)