Version 1.1.0
This commit is contained in:
parent
fb7f7b3c3a
commit
5caab7adb7
5 changed files with 8 additions and 8 deletions
|
@ -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.2");
|
||||
.include("net.thauvin.erik:isgd-shorten:1.1.0");
|
||||
```
|
||||
|
||||
## Gradle
|
||||
|
@ -83,7 +83,7 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation("net.thauvin.erik:isgd-shorten:1.0.2")
|
||||
implementation("net.thauvin.erik:isgd-shorten:1.1.0")
|
||||
}
|
||||
```
|
||||
|
||||
|
|
|
@ -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"));
|
||||
.include(dependency("net.thauvin.erik:isgd-shorten:1.1.0"));
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
|
|
@ -13,7 +13,7 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation("net.thauvin.erik:isgd-shorten:1.0.2")
|
||||
implementation("net.thauvin.erik:isgd-shorten:1.1.0")
|
||||
}
|
||||
|
||||
java {
|
||||
|
|
6
pom.xml
6
pom.xml
|
@ -4,7 +4,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>net.thauvin.erik</groupId>
|
||||
<artifactId>isgd-shorten</artifactId>
|
||||
<version>1.0.2-SNAPSHOT</version>
|
||||
<version>1.1.0</version>
|
||||
<name>isgd-shorten</name>
|
||||
<description>A simple implementation of the is.gd URL shortening and lookup APIs</description>
|
||||
<url>https://github.com/ethauvin/isgd-shorten</url>
|
||||
|
@ -18,13 +18,13 @@
|
|||
<dependency>
|
||||
<groupId>org.jetbrains.kotlin</groupId>
|
||||
<artifactId>kotlin-stdlib</artifactId>
|
||||
<version>2.0.20</version>
|
||||
<version>2.1.10</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>net.thauvin.erik.urlencoder</groupId>
|
||||
<artifactId>urlencoder-lib-jvm</artifactId>
|
||||
<version>1.5.0</version>
|
||||
<version>1.6.0</version>
|
||||
<scope>compile</scope>
|
||||
</dependency>
|
||||
</dependencies>
|
||||
|
|
|
@ -60,7 +60,7 @@ public class IsgdShortenBuild extends Project {
|
|||
public IsgdShortenBuild() {
|
||||
pkg = "net.thauvin.erik";
|
||||
name = "isgd-shorten";
|
||||
version = version(1, 0, 2, "SNAPSHOT");
|
||||
version = version(1, 1, 0);
|
||||
|
||||
javaRelease = 11;
|
||||
downloadSources = true;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue