Skip to content

Commit 25a5fbc

Browse files
committed
chore: fix gradle build
1 parent d63f5ec commit 25a5fbc

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

build.gradle.kts

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -172,19 +172,19 @@ configure<org.jreleaser.gradle.plugin.JReleaserExtension> {
172172

173173
signing {
174174
active.set(org.jreleaser.model.Active.ALWAYS)
175-
armored.set(true)
175+
armored = true
176176
}
177177

178178
deploy {
179179
maven {
180180
nexus2 {
181181
register("maven-central") {
182182
active.set(org.jreleaser.model.Active.ALWAYS)
183-
url.set('https://s01.oss.sonatype.org/service/local')
184-
snapshotUrl.set('https://s01.oss.sonatype.org/content/repositories/snapshots/')
185-
closeRepository.set(true)
186-
releaseRepository.set(true)
187-
stagingRepository.set('build/staging-deploy')
183+
url = "https://s01.oss.sonatype.org/service/local"
184+
snapshotUrl = "https://s01.oss.sonatype.org/content/repositories/snapshots/"
185+
closeRepository = true
186+
releaseRepository = true
187+
stagingRepository("build/staging-deploy")
188188
}
189189
}
190190
}

0 commit comments

Comments
 (0)