Skip to content
This repository was archived by the owner on May 12, 2024. It is now read-only.

Commit 303aa72

Browse files
committed
Prevent standalone from being published to maven
1 parent 7ebe9bf commit 303aa72

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

build.gradle

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,6 @@ allprojects {
8686
project.tasks.withType(PublishToMavenRepository).forEach {
8787
it.dependsOn(project.tasks.withType(Sign))
8888
}
89-
9089
}
9190

9291
dependencies {

standalone/build.gradle

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,3 +54,7 @@ jar {
5454
)
5555
}
5656
}
57+
58+
project.tasks.withType(PublishToMavenRepository).forEach {
59+
it.enabled = false
60+
}

0 commit comments

Comments
 (0)