Version 1.0.0

This commit is contained in:
Erik C. Thauvin 2025-03-16 17:29:06 -07:00
parent 8978b56750
commit 4b4f778490
Signed by: erik
GPG key ID: 776702A6A2DA330E
3 changed files with 4 additions and 4 deletions

View file

@ -98,7 +98,7 @@ To use with [bld](https://rife2.com/bld), include the following dependency in yo
repositories = List.of(MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY); repositories = List.of(MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY);
scope(compile) scope(compile)
.include(dependency("net.thauvin.erik", "jokeapi", "1.0.0-SNAPSHOT")); .include(dependency("net.thauvin.erik", "jokeapi", "1.0.0"));
``` ```
Be sure to use the [bld Kotlin extension](https://github.com/rife2/bld-kotlin) in your project. Be sure to use the [bld Kotlin extension](https://github.com/rife2/bld-kotlin) in your project.
@ -112,7 +112,7 @@ repositories {
} }
dependencies { dependencies {
implementation("net.thauvin.erik:jokeapi:1.0.0-SNAPSHOT") implementation("net.thauvin.erik:jokeapi:1.0.0")
} }
``` ```

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>jokeapi</artifactId> <artifactId>jokeapi</artifactId>
<version>1.0.0-SNAPSHOT</version> <version>1.0.0</version>
<name>jokeapi</name> <name>jokeapi</name>
<description>Retrieve jokes from Sv443&apos;s JokeAPI</description> <description>Retrieve jokes from Sv443&apos;s JokeAPI</description>
<url>https://github.com/ethauvin/jokeapi</url> <url>https://github.com/ethauvin/jokeapi</url>

View file

@ -60,7 +60,7 @@ public class JokeApiBuild extends Project {
public JokeApiBuild() { public JokeApiBuild() {
pkg = "net.thauvin.erik"; pkg = "net.thauvin.erik";
name = "jokeapi"; name = "jokeapi";
version = version(1, 0, 0, "SNAPSHOT"); version = version(1, 0, 0);
javaRelease = 11; javaRelease = 11;
downloadSources = true; downloadSources = true;