diff --git a/README.md b/README.md index 8aff45446..506e5db33 100644 --- a/README.md +++ b/README.md @@ -18,13 +18,11 @@ geographic data and representing a range of geometric objects. Grab latest release build via Gradle: ```groovy repositories { - maven { - url 'https://jitpack.io' - } + mavenCentral() } dependencies { - implementation 'com.github.WorldWindEarth:WorldWindKotlin:master-SNAPSHOT' + implementation 'earth.worldwind:worldwind:1.0.0' } ``` @@ -33,13 +31,11 @@ dependencies { Get development build snapshots with the latest features and bug fixes: ```groovy repositories { - maven { - url 'https://jitpack.io' - } + maven("https://s01.oss.sonatype.org/content/repositories/snapshots/") } dependencies { - implementation 'com.github.WorldWindEarth:WorldWindKotlin:develop-SNAPSHOT' + implementation 'earth.worldwind:worldwind:+' } ``` diff --git a/build.gradle.kts b/build.gradle.kts index b32c6fb6d..b3d32dd31 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -17,7 +17,7 @@ buildscript { allprojects { group = "earth.worldwind" - version = "1.0-SNAPSHOT" + version = "1.0.0" extra.apply { set("minSdk", 26) // java.time requires Oreo. Use "isCoreLibraryDesugaringEnabled = true" to lower API to KitKat