Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -75,12 +75,12 @@ subprojects {

task sourcesJar(type: Jar) {
dependsOn classes
classifier "sources"
archiveClassifier = "sources"
from sourceSets.main.allSource
}

task javadocJar(type: Jar, dependsOn: javadoc) {
classifier "javadoc"
archiveClassifier = "javadoc"
from javadoc.destinationDir
}

Expand All @@ -90,10 +90,10 @@ subprojects {
from components.java

artifact sourcesJar {
classifier "sources"
archiveClassifier = "sources"
}
artifact javadocJar {
classifier "javadoc"
archiveClassifier = "javadoc"
}

// This used to be in settings.gradle but it seems that Kotlin gets angry when you rename the project name
Expand Down
Binary file modified gradle/wrapper/gradle-wrapper.jar
Binary file not shown.
4 changes: 3 additions & 1 deletion gradle/wrapper/gradle-wrapper.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-7.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.14.3-bin.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists
286 changes: 176 additions & 110 deletions gradlew

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading