Skip to content

Commit 319ea9e

Browse files
chore: set nexus.publish to false by default (#493)
1 parent bc9fa48 commit 319ea9e

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,7 @@ allprojects {
8383

8484
publishing {
8585
publications {
86-
if (project.props.bool("nexus.publish", default = true)) {
86+
if (project.props.bool("nexus.publish", default = false)) {
8787
create<MavenPublication>(project.name) {
8888
groupId = "software.amazon.jdbc"
8989
artifactId = "aws-advanced-jdbc-wrapper"

gradle.properties

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,3 +16,4 @@ aws-advanced-jdbc-wrapper.version.major=2
1616
aws-advanced-jdbc-wrapper.version.minor=2
1717
aws-advanced-jdbc-wrapper.version.subminor=1
1818
snapshot=false
19+
nexus.publish=true

0 commit comments

Comments
 (0)