diff --git a/README.md b/README.md index cc07de3..42021b5 100644 --- a/README.md +++ b/README.md @@ -69,7 +69,7 @@ To use with [bld](https://rife2.com/bld), include the following dependency in yo repositories = List.of(MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY); scope(compile) - .include("net.thauvin.erik:isgd-shorten:1.0.`"); + .include("net.thauvin.erik:isgd-shorten:1.0.2"); ``` ## Gradle @@ -83,7 +83,7 @@ repositories { } dependencies { - implementation("net.thauvin.erik:isgd-shorten:1.0.1") + implementation("net.thauvin.erik:isgd-shorten:1.0.2") } ``` diff --git a/examples/bld/src/bld/java/com/example/ExampleBuild.java b/examples/bld/src/bld/java/com/example/ExampleBuild.java index 19bb45e..f5d6b52 100644 --- a/examples/bld/src/bld/java/com/example/ExampleBuild.java +++ b/examples/bld/src/bld/java/com/example/ExampleBuild.java @@ -24,7 +24,7 @@ public class ExampleBuild extends BaseProject { repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY); scope(compile) - .include(dependency("net.thauvin.erik:isgd-shorten:1.0.2-SNAPSHOT")); + .include(dependency("net.thauvin.erik:isgd-shorten:1.0.2")); } public static void main(String[] args) { diff --git a/examples/gradle/build.gradle.kts b/examples/gradle/build.gradle.kts index 18002f7..eb47570 100644 --- a/examples/gradle/build.gradle.kts +++ b/examples/gradle/build.gradle.kts @@ -13,7 +13,7 @@ repositories { } dependencies { - implementation("net.thauvin.erik:isgd-shorten:1.0.2-SNAPSHOT") + implementation("net.thauvin.erik:isgd-shorten:1.0.2") } java {