Skip to content

Commit

Permalink
Syntax fix
Browse files Browse the repository at this point in the history
  • Loading branch information
stefankoppier committed Sep 22, 2024
1 parent 98a79bc commit 2803420
Showing 1 changed file with 11 additions and 9 deletions.
20 changes: 11 additions & 9 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -72,17 +72,19 @@ jreleaser {
username = properties["mavenCentralUsername"] as? String
password = properties["mavenCentralPassword"] as? String
applyMavenCentralRules = true
verifyPom = false
retryDelay = 20
}
create("compiler-plugin") {
active = org.jreleaser.model.Active.ALWAYS
url = "https://central.sonatype.com/api/v1/publisher"
stagingRepository(project(":compiler-plugin").layout.buildDirectory.dir("staging-deploy").get().toString())
username = properties["mavenCentralUsername"] as? String
password = properties["mavenCentralPassword"] as? String
applyMavenCentralRules = true
retryDelay = 20
}
// create("compiler-plugin") {
// active = org.jreleaser.model.Active.ALWAYS
// url = "https://central.sonatype.com/api/v1/publisher"
// stagingRepository(project(":compiler-plugin").layout.buildDirectory.dir("staging-deploy").get().toString())
// username = properties["mavenCentralUsername"] as? String
// password = properties["mavenCentralPassword"] as? String
// applyMavenCentralRules = true
// verifyPom = false
// retryDelay = 20
// }
}
}
}
Expand Down

0 comments on commit 2803420

Please sign in to comment.