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); repositories = List.of(MAVEN_LOCAL, MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY);
scope(compile) 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) { public static void main(String[] args) {

View file

@ -19,5 +19,5 @@ repositories {
} }
dependencies { 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 { dependencies {
implementation("net.thauvin.erik:pinboard-poster:1.1.1-SNAPSHOT") implementation("net.thauvin.erik:pinboard-poster:1.1.1")
} }
java { java {

View file

@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion> <modelVersion>4.0.0</modelVersion>
<groupId>net.thauvin.erik</groupId> <groupId>net.thauvin.erik</groupId>
<artifactId>pinboard-poster</artifactId> <artifactId>pinboard-poster</artifactId>
<version>1.1.1-SNAPSHOT</version> <version>1.1.1</version>
<name>pinboard-poster</name> <name>pinboard-poster</name>
<description>A small library for posting to Pinboard</description> <description>A small library for posting to Pinboard</description>
<url>https://github.com/ethauvin/pinboard-poster</url> <url>https://github.com/ethauvin/pinboard-poster</url>

View file

@ -58,7 +58,7 @@ public class PinboardPosterBuild extends Project {
public PinboardPosterBuild() { public PinboardPosterBuild() {
pkg = "net.thauvin.erik"; pkg = "net.thauvin.erik";
name = "pinboard-poster"; name = "pinboard-poster";
version = version(1, 1, 1, "SNAPSHOT"); version = version(1, 1, 1);
mainClass = pkg + ".PinboardPoster"; mainClass = pkg + ".PinboardPoster";