Skip to content

Commit ecca771

Browse files
committed
Version 1.13
1 parent b8577bd commit ecca771

File tree

3 files changed

+35
-5
lines changed

3 files changed

+35
-5
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -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.12</version>
22+
<version>1.13</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.12'
31+
implementation 'com.github.javadev:underscore-kotlin:1.13'
3232
```
3333

3434
### Usage

pom-central.xml

Lines changed: 32 additions & 2 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.12</version>
7+
<version>1.13</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>
@@ -121,7 +121,7 @@
121121
<plugin>
122122
<groupId>org.apache.maven.plugins</groupId>
123123
<artifactId>maven-compiler-plugin</artifactId>
124-
<version>3.13.0</version>
124+
<version>3.14.0</version>
125125
<executions>
126126
<execution>
127127
<id>default-compile</id>
@@ -202,6 +202,36 @@
202202
</execution>
203203
</executions>
204204
</plugin>
205+
<plugin>
206+
<groupId>org.apache.maven.plugins</groupId>
207+
<artifactId>maven-antrun-plugin</artifactId>
208+
<version>3.1.0</version>
209+
<executions>
210+
<execution>
211+
<id>generate-checksums</id>
212+
<phase>verify</phase>
213+
<configuration>
214+
<target>
215+
<checksum fileext=".md5" algorithm="MD5">
216+
<fileset dir="${project.build.directory}">
217+
<include name="*.jar"/>
218+
<include name="*.pom"/>
219+
</fileset>
220+
</checksum>
221+
<checksum fileext=".sha1" algorithm="SHA-1">
222+
<fileset dir="${project.build.directory}">
223+
<include name="*.jar"/>
224+
<include name="*.pom"/>
225+
</fileset>
226+
</checksum>
227+
</target>
228+
</configuration>
229+
<goals>
230+
<goal>run</goal>
231+
</goals>
232+
</execution>
233+
</executions>
234+
</plugin>
205235
</plugins>
206236
</build>
207237
<reporting>

pom.xml

Lines changed: 1 addition & 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.12-SNAPSHOT</version>
7+
<version>1.13-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>

0 commit comments

Comments
 (0)