Version 0.9.2

This commit is contained in:
Erik C. Thauvin 2023-11-26 04:19:12 -08:00
parent f1c5f1030c
commit 0d863f7b65
5 changed files with 6 additions and 13 deletions

View file

@ -37,7 +37,7 @@ To use with [bld](https://rife2.com/bld), include the following dependency in yo
repositories = List.of(MAVEN_CENTRAL); repositories = List.of(MAVEN_CENTRAL);
scope(compile) scope(compile)
.include(dependency("net.thauvin.erik:readingtime:0.9.1")); .include(dependency("net.thauvin.erik:readingtime:0.9.2"));
``` ```
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.
@ -50,7 +50,7 @@ repositories {
} }
dependencies { dependencies {
implementation("net.thauvin.erik:readingtime:0.9.1") implementation("net.thauvin.erik:readingtime:0.9.2")
} }
``` ```
Instructions for using with Maven, Ivy, etc. can be found on [Maven Central](https://search.maven.org/search?q=g:%22net.thauvin.erik%22%20AND%20a:%22readingtime%22). Instructions for using with Maven, Ivy, etc. can be found on [Maven Central](https://search.maven.org/search?q=g:%22net.thauvin.erik%22%20AND%20a:%22readingtime%22).

View file

@ -25,7 +25,7 @@ public class ReadingTimeExampleBuild 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", "readingtime", version(0, 9, 2, "SNAPSHOT"))); .include(dependency("net.thauvin.erik", "readingtime", version(0, 9, 2)));
} }
public static void main(String[] args) { public static void main(String[] args) {

View file

@ -12,7 +12,7 @@ repositories {
} }
dependencies { dependencies {
implementation("net.thauvin.erik:readingtime:0.9.2-SNAPSHOT") implementation("net.thauvin.erik:readingtime:0.9.2")
} }
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>readingtime</artifactId> <artifactId>readingtime</artifactId>
<version>0.9.2-SNAPSHOT</version> <version>0.9.2</version>
<name>readingtime</name> <name>readingtime</name>
<description>Estimated Reading Time for Blog Posts, Articles, etc.</description> <description>Estimated Reading Time for Blog Posts, Articles, etc.</description>
<url>https://github.com/ethauvin/readingtime</url> <url>https://github.com/ethauvin/readingtime</url>
@ -21,12 +21,6 @@
<version>1.9.21</version> <version>1.9.21</version>
<scope>compile</scope> <scope>compile</scope>
</dependency> </dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-common</artifactId>
<version>1.9.21</version>
<scope>compile</scope>
</dependency>
<dependency> <dependency>
<groupId>org.jetbrains.kotlin</groupId> <groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk7</artifactId> <artifactId>kotlin-stdlib-jdk7</artifactId>

View file

@ -57,7 +57,7 @@ public class ReadingTimeBuild extends Project {
public ReadingTimeBuild() { public ReadingTimeBuild() {
pkg = "net.thauvin.erik"; pkg = "net.thauvin.erik";
name = "readingtime"; name = "readingtime";
version = version(0, 9, 2, "SNAPSHOT"); version = version(0, 9, 2);
javaRelease = 11; javaRelease = 11;
downloadSources = true; downloadSources = true;
@ -67,7 +67,6 @@ public class ReadingTimeBuild extends Project {
final var kotlin = version(1, 9, 21); final var kotlin = version(1, 9, 21);
scope(compile) scope(compile)
.include(dependency("org.jetbrains.kotlin", "kotlin-stdlib", kotlin)) .include(dependency("org.jetbrains.kotlin", "kotlin-stdlib", kotlin))
.include(dependency("org.jetbrains.kotlin", "kotlin-stdlib-common", kotlin))
.include(dependency("org.jetbrains.kotlin", "kotlin-stdlib-jdk7", kotlin)) .include(dependency("org.jetbrains.kotlin", "kotlin-stdlib-jdk7", kotlin))
.include(dependency("org.jetbrains.kotlin", "kotlin-stdlib-jdk8", kotlin)) .include(dependency("org.jetbrains.kotlin", "kotlin-stdlib-jdk8", kotlin))
.include(dependency("org.jsoup", "jsoup", version(1, 16, 2))); .include(dependency("org.jsoup", "jsoup", version(1, 16, 2)));