Skip to content

Commit

Permalink
chore: set nexus.publish to false by default (#493)
Browse files Browse the repository at this point in the history
  • Loading branch information
crystall-bitquill authored Jun 16, 2023
1 parent bc9fa48 commit 319ea9e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ allprojects {

publishing {
publications {
if (project.props.bool("nexus.publish", default = true)) {
if (project.props.bool("nexus.publish", default = false)) {
create<MavenPublication>(project.name) {
groupId = "software.amazon.jdbc"
artifactId = "aws-advanced-jdbc-wrapper"
Expand Down
1 change: 1 addition & 0 deletions gradle.properties
Original file line number Diff line number Diff line change
Expand Up @@ -16,3 +16,4 @@ aws-advanced-jdbc-wrapper.version.major=2
aws-advanced-jdbc-wrapper.version.minor=2
aws-advanced-jdbc-wrapper.version.subminor=1
snapshot=false
nexus.publish=true

0 comments on commit 319ea9e

Please sign in to comment.