diff --git a/build.gradle.kts b/build.gradle.kts index 3427ecaadf..0a904f6d86 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -10,7 +10,7 @@ version = providers.gradleProperty("VERSION_NAME").get() nexusPublishing { repositories { sonatype { - nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/staging/deploy/maven2/")) + nexusUrl.set(uri("https://s01.oss.sonatype.org/service/local/")) snapshotRepositoryUrl.set(uri("https://s01.oss.sonatype.org/content/repositories/snapshots/")) } } diff --git a/gradle.properties b/gradle.properties index f7b87f70ba..223fbc0e59 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ # SPDX-License-Identifier: Apache-2.0 GROUP=com.atlan -VERSION_NAME=1.7.0-SNAPSHOT +VERSION_NAME=1.7.1-SNAPSHOT POM_URL=https://github.com/atlanhq/atlan-java POM_SCM_URL=git@github.com:atlanhq/atlan-java.git diff --git a/sdk/src/main/java/com/atlan/Atlan.java b/sdk/src/main/java/com/atlan/Atlan.java index fd2991a932..446d33d879 100644 --- a/sdk/src/main/java/com/atlan/Atlan.java +++ b/sdk/src/main/java/com/atlan/Atlan.java @@ -16,7 +16,7 @@ public abstract class Atlan { public static final int DEFAULT_READ_TIMEOUT = 120 * 1000; public static final int DEFAULT_NETWORK_RETRIES = 3; - public static final String VERSION = "1.7.0-SNAPSHOT"; + public static final String VERSION = "1.7.1-SNAPSHOT"; // Note: these are set here so that they can be overridden, // i.e. when using the SDK in a workflow setting