Version 1.1.1

This commit is contained in:
Erik C. Thauvin 2023-11-26 00:29:39 -08:00
parent 0a9de8d863
commit e7a6b3481c
5 changed files with 5 additions and 5 deletions

View file

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

View file

@ -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'
}

View file

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

View file

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

View file

@ -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";