Skip to content

Commit

Permalink
Update :dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
jaguililla committed Sep 24, 2024
1 parent 6e8017c commit f87ca9e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 38 deletions.
37 changes: 1 addition & 36 deletions gradle/publish.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,6 @@

apply(plugin: "signing")
apply(plugin: "maven-publish")
apply(plugin: "org.jreleaser")

signing {
String signingKey = findProperty("signingKey") ?: System.getenv("SIGNING_KEY")
Expand All @@ -30,7 +29,7 @@ publishing {
}
}
else {
url = project.file(stagingDirectory)
url = rootProject.file(stagingDirectory)
}
}
}
Expand Down Expand Up @@ -68,37 +67,3 @@ publishing {
}
}
}

jreleaser {
gitRootSearch = true

signing {
active = "ALWAYS"
armored = true
publicKey = findProperty("signingKey") ?: System.getenv("SIGNING_KEY")
secretKey = findProperty("signingKey") ?: System.getenv("SIGNING_KEY")
passphrase = findProperty("signingPassword") ?: System.getenv("SIGNING_PASSWORD")
}

release {
github {
token = "TODO"
}
}

deploy {
maven {
mavenCentral {
sonatype {
active = "ALWAYS"
url = "https://central.sonatype.com/api/v1/publisher"
username =
findProperty("REPOSITORY_USERNAME") ?: System.getenv("REPOSITORY_USERNAME")
password =
findProperty("REPOSITORY_PASSWORD") ?: System.getenv("REPOSITORY_PASSWORD")
stagingRepository("build/staging")
}
}
}
}
}
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 @@
distributionBase=GRADLE_USER_HOME
distributionPath=wrapper/dists
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.1-all.zip
distributionUrl=https\://services.gradle.org/distributions/gradle-8.10.2-all.zip
networkTimeout=10000
validateDistributionUrl=true
zipStoreBase=GRADLE_USER_HOME
Expand Down
2 changes: 1 addition & 1 deletion settings.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ dependencyResolutionManagement {
version("nativeTools", "0.10.3")
version("detekt", "1.23.7")
version("jmhGradle", "0.7.2")
version("gradleWrapper", "8.10.1")
version("gradleWrapper", "8.10.2")
version("mkdocsMaterial", "9.5.36")
version("mermaidDokka", "0.6.0")
version("maven", "3.9.9")
Expand Down

0 comments on commit f87ca9e

Please sign in to comment.