We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f7cb63 commit 979f594Copy full SHA for 979f594
build.gradle.kts
@@ -1,6 +1,9 @@
1
+import org.jreleaser.model.Active
2
+
3
plugins {
4
`java-library`
5
`maven-publish`
6
+ id("org.jreleaser") version "1.17.0"
7
}
8
9
group = "io.github.ArchipelagoMW"
@@ -118,4 +121,21 @@ publishing {
118
121
119
122
120
123
124
+}
125
126
+jreleaser {
127
+ deploy {
128
+ maven {
129
+ mavenCentral {
130
+ register("javaClient") {
131
+ dryrun = true
132
+ active = Active.RELEASE
133
+ applyMavenCentralRules = true
134
+ sign = false
135
+ stagingRepository("target/staging-deploy")
136
+ }
137
138
139
140
141
0 commit comments