-
Notifications
You must be signed in to change notification settings - Fork 82
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The changes in gradle-wrapper.jar, gradle-wrapper.properties and gradlew are the result of running this command twice: ./gradlew wrapper --gradle-version 8.1 --gradle-distribution-sha256-sum a62c5f99585dd9e1f95dab7b9415a0e698fa9dd1e6c38537faa81ac078f4d23e This commit also includes: * making use of simple property assignment in Kotlin DSL scripts, see https://docs.gradle.org/8.1/release-notes.html#kotlin-assign * removing no longer needed @Suppress("DSL_SCOPE_VIOLATION") for using version catalog in the plugins {} block, see https://docs.gradle.org/8.1/userguide/upgrading_version_8.html#kotlin_dsl_plugins_catalogs_workaround --------- Co-authored-by: Lukellmann <[email protected]>
- Loading branch information
1 parent
8c77dd9
commit c466993
Showing
8 changed files
with
32 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,7 +6,7 @@ plugins { | |
} | ||
|
||
val dokkaJar by tasks.registering(Jar::class) { | ||
archiveClassifier.set("javadoc") | ||
archiveClassifier = "javadoc" | ||
from(tasks.named("dokkaHtml")) | ||
} | ||
|
||
|
@@ -19,37 +19,37 @@ publishing { | |
version = Library.version | ||
|
||
pom { | ||
name.set(Library.name) | ||
description.set(Library.description) | ||
url.set(Library.projectUrl) | ||
name = Library.name | ||
description = Library.description | ||
url = Library.projectUrl | ||
|
||
organization { | ||
name.set("Kord") | ||
url.set("https://github.com/kordlib") | ||
name = "Kord" | ||
url = "https://github.com/kordlib" | ||
} | ||
|
||
developers { | ||
developer { | ||
name.set("The Kord Team") | ||
name = "The Kord Team" | ||
} | ||
} | ||
|
||
issueManagement { | ||
system.set("GitHub") | ||
url.set("https://github.com/kordlib/kord/issues") | ||
system = "GitHub" | ||
url = "https://github.com/kordlib/kord/issues" | ||
} | ||
|
||
licenses { | ||
license { | ||
name.set("MIT") | ||
url.set("http://opensource.org/licenses/MIT") | ||
name = "MIT" | ||
url = "http://opensource.org/licenses/MIT" | ||
} | ||
} | ||
|
||
scm { | ||
connection.set("scm:git:ssh://github.com/kordlib/kord.git") | ||
developerConnection.set("scm:git:ssh://[email protected]:kordlib/kord.git") | ||
url.set(Library.projectUrl) | ||
connection = "scm:git:ssh://github.com/kordlib/kord.git" | ||
developerConnection = "scm:git:ssh://[email protected]:kordlib/kord.git" | ||
url = Library.projectUrl | ||
} | ||
} | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
distributionBase=GRADLE_USER_HOME | ||
distributionPath=wrapper/dists | ||
distributionSha256Sum=ff7bf6a86f09b9b2c40bb8f48b25fc19cf2b2664fd1d220cd7ab833ec758d0d7 | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.0.2-bin.zip | ||
distributionSha256Sum=a62c5f99585dd9e1f95dab7b9415a0e698fa9dd1e6c38537faa81ac078f4d23e | ||
distributionUrl=https\://services.gradle.org/distributions/gradle-8.1-bin.zip | ||
networkTimeout=10000 | ||
zipStoreBase=GRADLE_USER_HOME | ||
zipStorePath=wrapper/dists |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters