1.0.0-SNAPSHOT
This commit is contained in:
parent
b95e1541fb
commit
f0ccff6529
4 changed files with 10 additions and 5 deletions
5
.idea/misc.xml
generated
5
.idea/misc.xml
generated
|
@ -3,12 +3,17 @@
|
|||
<component name="EntryPointsManager">
|
||||
<entry_points version="2.0">
|
||||
<entry_point TYPE="field" FQNAME="net.thauvin.erik.jokeapi.models.Category SPOOKY" />
|
||||
<entry_point TYPE="field" FQNAME="net.thauvin.erik.jokeapi.JokeApi logger$delegate" />
|
||||
</entry_points>
|
||||
<pattern value="net.thauvin.erik.JokeApiBuild" method="jacoco" />
|
||||
<pattern value="net.thauvin.erik.JokeApiBuild" method="detekt" />
|
||||
<pattern value="net.thauvin.erik.JokeApiBuild" method="detektBaseline" />
|
||||
<pattern value="net.thauvin.erik.jokeapi.models.Category" />
|
||||
<pattern value="net.thauvin.erik.jokeapi.models.Category" method="Category" />
|
||||
<pattern value="net.thauvin.erik.jokeapi.models.Flag" method="Flag" />
|
||||
<pattern value="net.thauvin.erik.jokeapi.models.Format" method="Format" />
|
||||
<pattern value="net.thauvin.erik.jokeapi.models.Language" method="Language" />
|
||||
<pattern value="net.thauvin.erik.jokeapi.models.Type" method="Type" />
|
||||
</component>
|
||||
<component name="ProjectRootManager" version="2" languageLevel="JDK_17" project-jdk-name="17" project-jdk-type="JavaSDK">
|
||||
<output url="file://$PROJECT_DIR$/build" />
|
||||
|
|
|
@ -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.
|
||||
|
||||
|
@ -112,7 +112,7 @@ repositories {
|
|||
}
|
||||
|
||||
dependencies {
|
||||
implementation("net.thauvin.erik:jokeapi:0.9.1")
|
||||
implementation("net.thauvin.erik:jokeapi:1.0.0-SNAPSHOT")
|
||||
}
|
||||
```
|
||||
|
||||
|
|
2
pom.xml
2
pom.xml
|
@ -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's JokeAPI</description>
|
||||
<url>https://github.com/ethauvin/jokeapi</url>
|
||||
|
|
|
@ -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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue