Skip to content

Commit 7859c90

Browse files
authored
Version 1.53
1 parent d342d6f commit 7859c90

File tree

5 files changed

+24
-24
lines changed

5 files changed

+24
-24
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
underscore-java17
22
=================
33

4-
[![Maven Central](https://img.shields.io/maven-central/v/com.github.javadev/underscore17.svg)](https://central.sonatype.com/artifact/com.github.javadev/underscore17/1.52)
4+
[![Maven Central](https://img.shields.io/maven-central/v/com.github.javadev/underscore17.svg)](https://central.sonatype.com/artifact/com.github.javadev/underscore17/1.53)
55
[![MIT License](http://img.shields.io/badge/license-MIT-green.svg) ](https://github.com/javadev/underscore-java17/blob/main/LICENSE)
66
[![Java CI](https://github.com/javadev/underscore-java17/actions/workflows/maven.yml/badge.svg)](https://github.com/javadev/underscore-java17/actions/workflows/maven.yml)
77
[![CodeQL](https://github.com/javadev/underscore-java17/actions/workflows/codeql-analysis.yml/badge.svg)](https://github.com/javadev/underscore-java17/actions/workflows/codeql-analysis.yml)
@@ -28,7 +28,7 @@ Include the following in your `pom.xml` for Maven:
2828
<dependency>
2929
<groupId>com.github.javadev</groupId>
3030
<artifactId>underscore17</artifactId>
31-
<version>1.52</version>
31+
<version>1.53</version>
3232
</dependency>
3333
...
3434
</dependencies>
@@ -37,7 +37,7 @@ Include the following in your `pom.xml` for Maven:
3737
Gradle:
3838

3939
```groovy
40-
implementation 'com.github.javadev:underscore17:1.52'
40+
implementation 'com.github.javadev:underscore17:1.53'
4141
```
4242

4343
### Usage

pom-central17.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.github.javadev</groupId>
55
<artifactId>underscore17</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.52</version>
7+
<version>1.53</version>
88
<name>java 17 port of Underscore.js</name>
99
<description>The java 17 port of Underscore.js</description>
1010
<url>https://github.com/javadev/underscore-java17</url>
@@ -57,7 +57,7 @@
5757
<dependency>
5858
<groupId>org.junit.jupiter</groupId>
5959
<artifactId>junit-jupiter-engine</artifactId>
60-
<version>[5.10.0,)</version>
60+
<version>[5.10.1,)</version>
6161
</dependency>
6262
</dependencies>
6363
</plugin>
@@ -129,13 +129,13 @@
129129
<dependency>
130130
<groupId>org.junit.jupiter</groupId>
131131
<artifactId>junit-jupiter-api</artifactId>
132-
<version>[5.10.0,)</version>
132+
<version>[5.10.1,)</version>
133133
<scope>test</scope>
134134
</dependency>
135135
<dependency>
136136
<groupId>org.junit.platform</groupId>
137137
<artifactId>junit-platform-launcher</artifactId>
138-
<version>[1.10.0,)</version>
138+
<version>[1.10.1,)</version>
139139
<scope>test</scope>
140140
</dependency>
141141
<dependency>

pom-central21.xml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.github.javadev</groupId>
55
<artifactId>underscore21</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.52</version>
7+
<version>1.53</version>
88
<name>java 21 port of Underscore.js</name>
99
<description>The java 21 port of Underscore.js</description>
1010
<url>https://github.com/javadev/underscore-java17</url>
@@ -57,7 +57,7 @@
5757
<dependency>
5858
<groupId>org.junit.jupiter</groupId>
5959
<artifactId>junit-jupiter-engine</artifactId>
60-
<version>[5.10.0,)</version>
60+
<version>[5.10.1,)</version>
6161
</dependency>
6262
</dependencies>
6363
</plugin>
@@ -129,13 +129,13 @@
129129
<dependency>
130130
<groupId>org.junit.jupiter</groupId>
131131
<artifactId>junit-jupiter-api</artifactId>
132-
<version>[5.10.0,)</version>
132+
<version>[5.10.1,)</version>
133133
<scope>test</scope>
134134
</dependency>
135135
<dependency>
136136
<groupId>org.junit.platform</groupId>
137137
<artifactId>junit-platform-launcher</artifactId>
138-
<version>[1.10.0,)</version>
138+
<version>[1.10.1,)</version>
139139
<scope>test</scope>
140140
</dependency>
141141
<dependency>

pom-pack17.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>underscore17</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.52</version>
7+
<version>1.53</version>
88
<name>java 17 port of Underscore.js</name>
99
<description>The java 17 port of Underscore.js</description>
1010
<url>https://github.com/javadev/underscore-java17</url>

pom.xml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.github.javadev</groupId>
55
<artifactId>underscore17</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.52-SNAPSHOT</version>
7+
<version>1.53-SNAPSHOT</version>
88
<name>java 17 port of Underscore.js</name>
99
<description>The java 17 port of Underscore.js</description>
1010
<url>https://github.com/javadev/underscore-java17</url>
@@ -60,14 +60,14 @@
6060
<dependency>
6161
<groupId>org.junit.jupiter</groupId>
6262
<artifactId>junit-jupiter-engine</artifactId>
63-
<version>[5.10.0,)</version>
63+
<version>[5.10.1,)</version>
6464
</dependency>
6565
</dependencies>
6666
</plugin>
6767
<plugin>
6868
<groupId>org.apache.maven.plugins</groupId>
6969
<artifactId>maven-jar-plugin</artifactId>
70-
<version>3.2.0</version>
70+
<version>3.3.0</version>
7171
<configuration>
7272
<archive>
7373
<manifestEntries>
@@ -111,7 +111,7 @@
111111
<plugin>
112112
<groupId>org.jacoco</groupId>
113113
<artifactId>jacoco-maven-plugin</artifactId>
114-
<version>0.8.10</version>
114+
<version>0.8.11</version>
115115
<executions>
116116
<execution>
117117
<id>prepare-agent</id>
@@ -176,9 +176,9 @@
176176
<plugin>
177177
<groupId>org.apache.maven.plugins</groupId>
178178
<artifactId>maven-pmd-plugin</artifactId>
179-
<version>3.14.0</version>
179+
<version>3.21.2</version>
180180
<configuration>
181-
<targetJdk>1.8</targetJdk>
181+
<targetJdk>17</targetJdk>
182182
<rulesets>
183183
<ruleset>rulesets/java/basic.xml</ruleset>
184184
<ruleset>rulesets/java/design.xml</ruleset>
@@ -196,28 +196,28 @@
196196
</configuration>
197197
</plugin>
198198
<plugin>
199-
<groupId>org.codehaus.mojo</groupId>
200-
<artifactId>findbugs-maven-plugin</artifactId>
201-
<version>3.0.5</version>
199+
<groupId>com.github.spotbugs</groupId>
200+
<artifactId>spotbugs-maven-plugin</artifactId>
201+
<version>4.8.1.0</version>
202202
</plugin>
203203
<plugin>
204204
<groupId>org.codehaus.mojo</groupId>
205205
<artifactId>taglist-maven-plugin</artifactId>
206-
<version>2.4</version>
206+
<version>3.0.0</version>
207207
</plugin>
208208
</plugins>
209209
</reporting>
210210
<dependencies>
211211
<dependency>
212212
<groupId>org.junit.jupiter</groupId>
213213
<artifactId>junit-jupiter-api</artifactId>
214-
<version>[5.10.0,)</version>
214+
<version>[5.10.1,)</version>
215215
<scope>test</scope>
216216
</dependency>
217217
<dependency>
218218
<groupId>org.junit.platform</groupId>
219219
<artifactId>junit-platform-launcher</artifactId>
220-
<version>[1.10.0,)</version>
220+
<version>[1.10.1,)</version>
221221
<scope>test</scope>
222222
</dependency>
223223
<dependency>

0 commit comments

Comments
 (0)