Skip to content

Commit

Permalink
Bump version.
Browse files Browse the repository at this point in the history
  • Loading branch information
toxicity188 committed Dec 28, 2024
1 parent 7f6639c commit f4381a7
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ dependencies {
}
}

val sourceJar by tasks.creating(Jar::class.java) {
val sourceJar by tasks.registering(Jar::class) {
dependsOn(tasks.classes)
fun getProjectSource(project: Project): Array<File> {
return if (project.subprojects.isEmpty()) project.sourceSets.main.get().allSource.srcDirs.toTypedArray() else ArrayList<File>().apply {
Expand All @@ -151,7 +151,7 @@ val sourceJar by tasks.creating(Jar::class.java) {
from(*getProjectSource(project))
duplicatesStrategy = DuplicatesStrategy.INCLUDE
}
val dokkaJar by tasks.creating(Jar::class.java) {
val dokkaJar by tasks.registering(Jar::class) {
dependsOn(tasks.dokkaHtmlMultiModule)
archiveClassifier = "dokka"
from(layout.buildDirectory.dir("dokka/htmlMultiModule").orNull?.asFile)
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 @@
#Thu May 02 01:20:37 KST 2024
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.11.1-bin.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.12-bin.zip
zipStoreBase=GRADLE_USER_HOME
zipStorePath=wrapper/dists

0 comments on commit f4381a7

Please sign in to comment.