Skip to content

Commit b0f89e2

Browse files
authored
Version 1.105
1 parent ec8da07 commit b0f89e2

File tree

4 files changed

+21
-21
lines changed

4 files changed

+21
-21
lines changed

README.md

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

4-
[![Maven Central](https://img.shields.io/maven-central/v/com.github.javadev/underscore.svg)](https://central.sonatype.com/artifact/com.github.javadev/underscore/1.104)
4+
[![Maven Central](https://img.shields.io/maven-central/v/com.github.javadev/underscore.svg)](https://central.sonatype.com/artifact/com.github.javadev/underscore/1.105)
55
[![MIT License](http://img.shields.io/badge/license-MIT-green.svg)](https://github.com/javadev/underscore-java/blob/main/LICENSE)
66
[![Java CI](https://github.com/javadev/underscore-java/actions/workflows/maven.yml/badge.svg)](https://github.com/javadev/underscore-java/actions/workflows/maven.yml)
77
[![CodeQL](https://github.com/javadev/underscore-java/actions/workflows/codeql.yml/badge.svg)](https://github.com/javadev/underscore-java/actions/workflows/codeql.yml)
@@ -41,7 +41,7 @@ To configure your Maven project, add the following code to your pom.xml file:
4141
<dependency>
4242
<groupId>com.github.javadev</groupId>
4343
<artifactId>underscore</artifactId>
44-
<version>1.104</version>
44+
<version>1.105</version>
4545
</dependency>
4646
...
4747
</dependencies>
@@ -50,7 +50,7 @@ To configure your Maven project, add the following code to your pom.xml file:
5050
Gradle configuration:
5151

5252
```groovy
53-
implementation 'com.github.javadev:underscore:1.104'
53+
implementation 'com.github.javadev:underscore:1.105'
5454
```
5555

5656
### Usage

pom-central.xml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.github.javadev</groupId>
55
<artifactId>underscore</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.104</version>
7+
<version>1.105</version>
88
<name>java port of Underscore.js</name>
99
<description>The java port of Underscore.js</description>
1010
<url>https://github.com/javadev/underscore-java</url>
@@ -57,7 +57,7 @@
5757
<dependency>
5858
<groupId>org.junit.jupiter</groupId>
5959
<artifactId>junit-jupiter-engine</artifactId>
60-
<version>[5.10.2,)</version>
60+
<version>[5.10.3,)</version>
6161
</dependency>
6262
</dependencies>
6363
</plugin>
@@ -90,7 +90,7 @@
9090
<plugin>
9191
<groupId>org.apache.maven.plugins</groupId>
9292
<artifactId>maven-javadoc-plugin</artifactId>
93-
<version>3.6.3</version>
93+
<version>3.8.0</version>
9494
<executions>
9595
<execution>
9696
<id>attach-sources</id>
@@ -109,7 +109,7 @@
109109
<plugin>
110110
<groupId>org.apache.maven.plugins</groupId>
111111
<artifactId>maven-gpg-plugin</artifactId>
112-
<version>3.2.4</version>
112+
<version>3.2.5</version>
113113
<executions>
114114
<execution>
115115
<id>sign-artifacts</id>
@@ -126,13 +126,13 @@
126126
<dependency>
127127
<groupId>org.junit.jupiter</groupId>
128128
<artifactId>junit-jupiter-api</artifactId>
129-
<version>[5.10.2,)</version>
129+
<version>[5.10.3,)</version>
130130
<scope>test</scope>
131131
</dependency>
132132
<dependency>
133133
<groupId>org.junit.platform</groupId>
134134
<artifactId>junit-platform-launcher</artifactId>
135-
<version>[1.10.2,)</version>
135+
<version>[1.10.3,)</version>
136136
<scope>test</scope>
137137
</dependency>
138138
<dependency>

pom-pack.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.github.javadev</groupId>
55
<artifactId>underscore</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.104</version>
7+
<version>1.105</version>
88
<name>java port of Underscore.js</name>
99
<description>The java port of Underscore.js</description>
1010
<url>https://github.com/javadev/underscore-java</url>
@@ -43,7 +43,7 @@
4343
<plugin>
4444
<groupId>org.apache.maven.plugins</groupId>
4545
<artifactId>maven-compiler-plugin</artifactId>
46-
<version>3.12.1</version>
46+
<version>3.13.0</version>
4747
<configuration>
4848
<source>11</source>
4949
<target>11</target>
@@ -58,7 +58,7 @@
5858
<dependency>
5959
<groupId>org.junit.jupiter</groupId>
6060
<artifactId>junit-jupiter-engine</artifactId>
61-
<version>[5.10.2,)</version>
61+
<version>[5.10.3,)</version>
6262
</dependency>
6363
</dependencies>
6464
</plugin>
@@ -207,7 +207,7 @@
207207
<plugin>
208208
<groupId>org.apache.maven.plugins</groupId>
209209
<artifactId>maven-javadoc-plugin</artifactId>
210-
<version>3.6.3</version>
210+
<version>3.8.0</version>
211211
<executions>
212212
<execution>
213213
<id>attach-sources</id>
@@ -226,7 +226,7 @@
226226
<plugin>
227227
<groupId>org.apache.maven.plugins</groupId>
228228
<artifactId>maven-gpg-plugin</artifactId>
229-
<version>3.2.4</version>
229+
<version>3.2.5</version>
230230
<executions>
231231
<execution>
232232
<id>sign-artifacts</id>
@@ -243,13 +243,13 @@
243243
<dependency>
244244
<groupId>org.junit.jupiter</groupId>
245245
<artifactId>junit-jupiter-api</artifactId>
246-
<version>[5.10.2,)</version>
246+
<version>[5.10.3,)</version>
247247
<scope>test</scope>
248248
</dependency>
249249
<dependency>
250250
<groupId>org.junit.platform</groupId>
251251
<artifactId>junit-platform-launcher</artifactId>
252-
<version>[1.10.2,)</version>
252+
<version>[1.10.3,)</version>
253253
<scope>test</scope>
254254
</dependency>
255255
<dependency>

pom.xml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.github.javadev</groupId>
55
<artifactId>underscore</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.104-SNAPSHOT</version>
7+
<version>1.105-SNAPSHOT</version>
88
<name>java port of Underscore.js</name>
99
<description>The java port of Underscore.js</description>
1010
<url>https://github.com/javadev/underscore-java</url>
@@ -60,7 +60,7 @@
6060
<dependency>
6161
<groupId>org.junit.jupiter</groupId>
6262
<artifactId>junit-jupiter-engine</artifactId>
63-
<version>[5.10.2,)</version>
63+
<version>[5.10.3,)</version>
6464
</dependency>
6565
</dependencies>
6666
</plugin>
@@ -224,19 +224,19 @@
224224
<dependency>
225225
<groupId>org.junit.jupiter</groupId>
226226
<artifactId>junit-jupiter-api</artifactId>
227-
<version>[5.10.2,)</version>
227+
<version>[5.10.3,)</version>
228228
<scope>test</scope>
229229
</dependency>
230230
<dependency>
231231
<groupId>org.junit.jupiter</groupId>
232232
<artifactId>junit-jupiter-engine</artifactId>
233-
<version>[5.10.2,)</version>
233+
<version>[5.10.3,)</version>
234234
<scope>test</scope>
235235
</dependency>
236236
<dependency>
237237
<groupId>org.junit.platform</groupId>
238238
<artifactId>junit-platform-launcher</artifactId>
239-
<version>[1.10.2,)</version>
239+
<version>[1.10.3,)</version>
240240
<scope>test</scope>
241241
</dependency>
242242
<dependency>

0 commit comments

Comments
 (0)