We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d99777 commit 0c470e8Copy full SHA for 0c470e8
packages/proguard-plugin/build.gradle.kts
@@ -37,15 +37,13 @@ gradlePlugin {
37
}
38
39
publishing {
40
- publications.create<MavenPublication>("maven") {
41
- // pom.url.set("https://docs.faststats.dev/serviceio")
+ publications.withType<MavenPublication>().configureEach {
42
pom.scm {
43
val repository = "FastStats-dev/sourcemaps"
44
url.set("https://github.com/$repository/tree/main/packages/proguard-plugin")
45
connection.set("scm:git:git://github.com/$repository.git")
46
developerConnection.set("scm:git:ssh://github.com/$repository.git")
47
48
- from(components["java"])
49
50
repositories.maven {
51
val branch = if (version.toString().contains("-pre")) "snapshots" else "releases"
0 commit comments