Skip to content

Commit

Permalink
1.0.0-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
ethauvin committed Dec 26, 2024
1 parent b95e154 commit f0ccff6
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 5 deletions.
5 changes: 5 additions & 0 deletions .idea/misc.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,10 +95,10 @@ joke.getJoke().forEach(System.out::println);
To use with [bld](https://rife2.com/bld), include the following dependency in your build file:

```java
repositories = List.of(MAVEN_CENTRAL);
repositories = List.of(MAVEN_CENTRAL, SONATYPE_SNAPSHOTS_LEGACY);

scope(compile)
.include(dependency("net.thauvin.erik:jokeapi:0.9.1"));
.include(dependency("net.thauvin.erik", "jokeapi", "1.0.0-SNAPSHOT"));
```
Be sure to use the [bld Kotlin extension](https://github.com/rife2/bld-kotlin) in your project.

Expand All @@ -112,7 +112,7 @@ repositories {
}
dependencies {
implementation("net.thauvin.erik:jokeapi:0.9.1")
implementation("net.thauvin.erik:jokeapi:1.0.0-SNAPSHOT")
}
```

Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>net.thauvin.erik</groupId>
<artifactId>jokeapi</artifactId>
<version>0.9.2-SNAPSHOT</version>
<version>1.0.0-SNAPSHOT</version>
<name>jokeapi</name>
<description>Retrieve jokes from Sv443&apos;s JokeAPI</description>
<url>https://github.com/ethauvin/jokeapi</url>
Expand Down
2 changes: 1 addition & 1 deletion src/bld/java/net/thauvin/erik/JokeApiBuild.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class JokeApiBuild extends Project {
public JokeApiBuild() {
pkg = "net.thauvin.erik";
name = "jokeapi";
version = version(0, 9, 2, "SNAPSHOT");
version = version(1, 0, 0, "SNAPSHOT");

javaRelease = 11;
downloadSources = true;
Expand Down

0 comments on commit f0ccff6

Please sign in to comment.