Skip to content

Commit 0639fe2

Browse files
authored
Introduced version 1.2
1 parent 0f61ecb commit 0639fe2

File tree

10 files changed

+287
-224
lines changed

10 files changed

+287
-224
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
underscore-kotlin
22
=================
3-
[![Maven Central](https://img.shields.io/maven-central/v/com.github.javadev/underscore-kotlin.svg)](https://central.sonatype.com/artifact/com.github.javadev/underscore-kotlin/1.1)
3+
[![Maven Central](https://img.shields.io/maven-central/v/com.github.javadev/underscore-kotlin.svg)](https://central.sonatype.com/artifact/com.github.javadev/underscore-kotlin/1.2)
44
[![Java CI with Maven](https://github.com/kotlindev/underscore-kotlin/actions/workflows/maven.yml/badge.svg)](https://github.com/kotlindev/underscore-kotlin/actions/workflows/maven.yml)
55
[![javadoc](https://javadoc.io/badge2/com.github.javadev/underscore-kotlin/javadoc.svg)](https://javadoc.io/doc/com.github.javadev/underscore-kotlin)
66

@@ -19,7 +19,7 @@ To configure your Maven project, add the following code to your pom.xml file:
1919
<dependency>
2020
<groupId>com.github.javadev</groupId>
2121
<artifactId>underscore-kotlin</artifactId>
22-
<version>1.1</version>
22+
<version>1.2</version>
2323
</dependency>
2424
...
2525
</dependencies>
@@ -28,7 +28,7 @@ To configure your Maven project, add the following code to your pom.xml file:
2828
Gradle configuration:
2929

3030
```groovy
31-
implementation 'com.github.javadev:underscore-kotlin:1.1'
31+
implementation 'com.github.javadev:underscore-kotlin:1.2'
3232
```
3333

3434
### Usage

pom-central.xml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.github.javadev</groupId>
55
<artifactId>underscore-kotlin</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.1</version>
7+
<version>1.2</version>
88
<name>kotlin port of Underscore.js</name>
99
<description>The kotlin port of Underscore.js</description>
1010
<url>https://github.com/kotlindev/underscore-kotlin</url>
@@ -67,7 +67,7 @@
6767
<plugin>
6868
<groupId>org.jacoco</groupId>
6969
<artifactId>jacoco-maven-plugin</artifactId>
70-
<version>0.8.10</version>
70+
<version>0.8.11</version>
7171
<executions>
7272
<execution>
7373
<id>prepare-agent</id>
@@ -173,7 +173,7 @@
173173
<plugin>
174174
<groupId>org.jetbrains.dokka</groupId>
175175
<artifactId>dokka-maven-plugin</artifactId>
176-
<version>1.8.20</version>
176+
<version>1.9.10</version>
177177
<executions>
178178
<execution>
179179
<phase>prepare-package</phase>
@@ -206,7 +206,7 @@
206206
<plugin>
207207
<groupId>org.jacoco</groupId>
208208
<artifactId>jacoco-maven-plugin</artifactId>
209-
<version>0.8.10</version>
209+
<version>0.8.11</version>
210210
<configuration>
211211
<excludes>
212212
<exclude>**/U$BaseHttpSslSocketFactory*.class</exclude>
@@ -244,6 +244,12 @@
244244
<version>[5.10.0,)</version>
245245
<scope>test</scope>
246246
</dependency>
247+
<dependency>
248+
<groupId>org.junit.platform</groupId>
249+
<artifactId>junit-platform-launcher</artifactId>
250+
<version>[1.10.0,)</version>
251+
<scope>test</scope>
252+
</dependency>
247253
<dependency>
248254
<groupId>org.awaitility</groupId>
249255
<artifactId>awaitility</artifactId>

pom.xml

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.github.javadev</groupId>
55
<artifactId>underscore-kotlin</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.1-SNAPSHOT</version>
7+
<version>1.2-SNAPSHOT</version>
88
<name>kotlin port of Underscore.js</name>
99
<description>The kotlin port of Underscore.js</description>
1010
<url>https://github.com/kotlindev/underscore-kotlin</url>
@@ -201,6 +201,12 @@
201201
<version>[5.10.0,)</version>
202202
<scope>test</scope>
203203
</dependency>
204+
<dependency>
205+
<groupId>org.junit.platform</groupId>
206+
<artifactId>junit-platform-launcher</artifactId>
207+
<version>[1.10.0,)</version>
208+
<scope>test</scope>
209+
</dependency>
204210
<dependency>
205211
<groupId>org.awaitility</groupId>
206212
<artifactId>awaitility</artifactId>

0 commit comments

Comments
 (0)