Version 1.0.2

This commit is contained in:
Erik C. Thauvin 2025-03-16 22:21:27 -07:00
parent b91c2756db
commit fb7f7b3c3a
Signed by: erik
GPG key ID: 776702A6A2DA330E
3 changed files with 4 additions and 4 deletions

View file

@ -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")
}
```

View file

@ -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) {

View file

@ -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 {