Skip to content

Commit 510eafe

Browse files
committed
upgrade commons lang to 3.19.0
1 parent 61ad473 commit 510eafe

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

.github/workflows/pull-requests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
strategy:
1212
matrix:
13-
nodeVersion: [ 18, 20, 22 ]
13+
nodeVersion: [ 20, 22 ]
1414
jdkVersion: [ openjdk9, openjdk10, openjdk11, openjdk21 ]
1515
steps:
1616
- name: Checkout source code

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ const java = javaInit.getJavaInstance();
164164

165165
```javascript
166166
const java = require("java");
167-
java.classpath.push("commons-lang3-3.18.0.jar");
167+
java.classpath.push("commons-lang3-3.19.0.jar");
168168
java.classpath.push("commons-io.jar");
169169

170170
const list1 = java.newInstanceSync("java.util.ArrayList");
@@ -243,7 +243,7 @@ java.asyncOptions = {
243243
syncSuffix: "", // Sync methods use the base name(!!)
244244
promiseSuffix: "Promise", // Generate methods returning promises, using the suffix Promise.
245245
};
246-
java.classpath.push("commons-lang3-3.18.0.jar");
246+
java.classpath.push("commons-lang3-3.19.0.jar");
247247
java.classpath.push("commons-io.jar");
248248

249249
java.import("java.util.ArrayList"); // see NOTE below

scripts/commons-lang/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<dependency>
99
<groupId>org.apache.commons</groupId>
1010
<artifactId>commons-lang3</artifactId>
11-
<version>3.5</version>
11+
<version>3.19.0</version>
1212
</dependency>
1313
</dependencies>
1414

224 KB
Binary file not shown.

0 commit comments

Comments
 (0)