Skip to content

Commit

Permalink
upgrade to Kotlin 2.0.0 and bump to 2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
MarkNenadov committed Jun 29, 2024
1 parent 28e5c23 commit 2f1ef24
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .idea/kotlinc.xml

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

4 changes: 1 addition & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,9 +9,7 @@ All 4 endpoints are covered (Passage Text, Passage Html, Passage Audio, and Pass

## Recent Releases

* v1.5 (March 29, 2024) - https://github.com/MarkNenadov/kESV/releases/download/v1.5/kESV-1.5.jar

* v1.6 (May 1, 2024) - https://github.com/MarkNenadov/kESV/releases/download/v1.6/kESV-1.6.jar
* v2.0 (June 29, 2024) - https://github.com/MarkNenadov/kESV/releases/download/v2.0/kESV-2.0.jar

## Usage

Expand Down
31 changes: 27 additions & 4 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<artifactId>kESV</artifactId>
<groupId>org.pythonbyte</groupId>
<version>1.6</version>
<version>2.0</version>
<packaging>jar</packaging>

<name>kESV</name>
Expand All @@ -31,7 +31,7 @@
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
<version>2.0.0-RC3</version>
<version>2.0.0</version>
<executions>
<execution>
<id>compile</id>
Expand Down Expand Up @@ -75,6 +75,29 @@
<mainClass>MainKt</mainClass>
</configuration>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-shade-plugin</artifactId>
<version>3.2.4</version>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<filters>
<filter>
<artifact>*:*</artifact>
<excludes>
<exclude>**/MainKt.class</exclude>
</excludes>
</filter>
</filters>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-install-plugin</artifactId>
Expand Down Expand Up @@ -120,7 +143,7 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-test-junit5</artifactId>
<version>2.0.0-RC3</version>
<version>2.0.0</version>
<scope>test</scope>
</dependency>
<dependency>
Expand All @@ -132,7 +155,7 @@
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib-jdk8</artifactId>
<version>2.0.0-RC3</version>
<version>2.0.0</version>
</dependency>
<dependency>
<groupId>com.squareup.okhttp</groupId>
Expand Down

0 comments on commit 2f1ef24

Please sign in to comment.