diff --git a/build.gradle b/build.gradle index ca229ff56..cc1b0fdfa 100644 --- a/build.gradle +++ b/build.gradle @@ -187,8 +187,8 @@ subprojects { repositories { maven { credentials { - username System.hasProperty("SONATYPE_NEXUS_USERNAME") ? System.getProperty("SONATYPE_NEXUS_USERNAME") : System.getenv("SONATYPE_NEXUS_USERNAME") - password System.hasProperty("SONATYPE_NEXUS_PASSWORD") ? System.getProperty("SONATYPE_NEXUS_PASSWORD") : System.getenv("SONATYPE_NEXUS_PASSWORD") + username System.getenv("SONATYPE_NEXUS_USERNAME") + password System.getenv("SONATYPE_NEXUS_PASSWORD") } def releasesRepoUrl = "https://oss.sonatype.org/service/local/staging/deploy/maven2/" def snapshotsRepoUrl = "https://oss.sonatype.org/content/repositories/snapshots/" diff --git a/gradle.properties b/gradle.properties index 358e862a0..0373ec4e2 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -version=0.10.1 +version=0.10.1-SNAPSHOT vertxVersion=4.4.0