Version 1.1.1
This commit is contained in:
parent
0a9de8d863
commit
e7a6b3481c
5 changed files with 5 additions and 5 deletions
|
@ -25,7 +25,7 @@ public class ExampleBuild extends BaseProject {
|
|||
repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY);
|
||||
|
||||
scope(compile)
|
||||
.include(dependency("net.thauvin.erik", "pinboard-poster", version(1, 1, 1, "SNAPSHOT")));
|
||||
.include(dependency("net.thauvin.erik", "pinboard-poster", version(1, 1, 1)));
|
||||
}
|
||||
|
||||
public static void main(String[] args) {
|
||||
|
|
|
@ -19,5 +19,5 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation 'net.thauvin.erik:pinboard-poster:1.1.1-SNAPSHOT'
|
||||
implementation 'net.thauvin.erik:pinboard-poster:1.1.1'
|
||||
}
|
||||
|
|
|
@ -14,7 +14,7 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation("net.thauvin.erik:pinboard-poster:1.1.1-SNAPSHOT")
|
||||
implementation("net.thauvin.erik:pinboard-poster:1.1.1")
|
||||
}
|
||||
|
||||
java {
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -4,7 +4,7 @@
|
|||
<modelVersion>4.0.0</modelVersion>
|
||||
<groupId>net.thauvin.erik</groupId>
|
||||
<artifactId>pinboard-poster</artifactId>
|
||||
<version>1.1.1-SNAPSHOT</version>
|
||||
<version>1.1.1</version>
|
||||
<name>pinboard-poster</name>
|
||||
<description>A small library for posting to Pinboard</description>
|
||||
<url>https://github.com/ethauvin/pinboard-poster</url>
|
||||
|
|
|
@ -58,7 +58,7 @@ public class PinboardPosterBuild extends Project {
|
|||
public PinboardPosterBuild() {
|
||||
pkg = "net.thauvin.erik";
|
||||
name = "pinboard-poster";
|
||||
version = version(1, 1, 1, "SNAPSHOT");
|
||||
version = version(1, 1, 1);
|
||||
|
||||
mainClass = pkg + ".PinboardPoster";
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue