Skip to content

Commit eaf0f0d

Browse files
authored
Merge branch 'develop-6.x.x' into develop-6.x.x
2 parents 7070f40 + 6556207 commit eaf0f0d

File tree

66 files changed

+667
-353
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

66 files changed

+667
-353
lines changed

.github/workflows/ci-test.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
timeout-minutes: 60
2121
dependencies:
2222
name: Dependency checks
23-
if: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/develop' }}
23+
if: ${{ github.event_name != 'pull_request' && github.ref == 'refs/heads/develop-6.x.x' }}
2424
runs-on: ubuntu-latest
2525
steps:
2626
- uses: actions/checkout@v4
@@ -30,9 +30,7 @@ jobs:
3030
java-version: ${{ env.DEV_JDK }}
3131
cache: 'maven'
3232
- name: OWASP dependency check
33-
env:
34-
NVD_API_KEY: ${{ secrets.NVD_API_KEY }}
35-
run: mvn -V -B dependency-check:check
33+
run: mvn -V -B dependency-check:check -DnvdApiKey=${{ secrets.NVD_API_KEY }}
3634
timeout-minutes: 60
3735
test:
3836
name: ${{ matrix.os }} Test
@@ -58,7 +56,7 @@ jobs:
5856
file-version-suffix: ''
5957
cache: 'true'
6058
- name: Maven Build
61-
timeout-minutes: 10
59+
timeout-minutes: 30
6260
run: ${{ steps.install-mvnd.outputs.mvnd-dir }}/mvnd -V -B -T 1C compile test-compile -DtrimStackTrace=false -D'dependency-check.skip' -D'license.skip'
6361
- name: Maven Test
6462
timeout-minutes: 60

exist-ant/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>org.exist-db</groupId>
3030
<artifactId>exist-parent</artifactId>
31-
<version>6.3.0-SNAPSHOT</version>
31+
<version>6.4.1-SNAPSHOT</version>
3232
<relativePath>../exist-parent</relativePath>
3333
</parent>
3434

exist-core-jcstress/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>org.exist-db</groupId>
3030
<artifactId>exist-parent</artifactId>
31-
<version>6.3.0-SNAPSHOT</version>
31+
<version>6.4.1-SNAPSHOT</version>
3232
<relativePath>../exist-parent</relativePath>
3333
</parent>
3434

exist-core-jmh/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>org.exist-db</groupId>
3030
<artifactId>exist-parent</artifactId>
31-
<version>6.3.0-SNAPSHOT</version>
31+
<version>6.4.1-SNAPSHOT</version>
3232
<relativePath>../exist-parent</relativePath>
3333
</parent>
3434

exist-core/pom.xml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828
<parent>
2929
<groupId>org.exist-db</groupId>
3030
<artifactId>exist-parent</artifactId>
31-
<version>6.3.0-SNAPSHOT</version>
31+
<version>6.4.1-SNAPSHOT</version>
3232
<relativePath>../exist-parent</relativePath>
3333
</parent>
3434

@@ -59,7 +59,7 @@
5959
<dependency>
6060
<groupId>com.fasterxml.jackson.core</groupId>
6161
<artifactId>jackson-core</artifactId>
62-
<version>2.15.2</version>
62+
<version>2.18.3</version>
6363
</dependency>
6464

6565
<!-- dependency>
@@ -114,7 +114,7 @@
114114
<dependency>
115115
<groupId>org.relaxng</groupId>
116116
<artifactId>jing</artifactId>
117-
<version>20220510</version>
117+
<version>20241231</version>
118118
<exclusions>
119119
<exclusion> <!-- conflicts with xerces 2.12.2 dependency on xml-apis version 1.4.01 -->
120120
<groupId>xml-apis</groupId>
@@ -145,7 +145,7 @@
145145
<dependency>
146146
<groupId>org.bouncycastle</groupId>
147147
<artifactId>bcprov-jdk18on</artifactId>
148-
<version>1.78.1</version>
148+
<version>1.80</version>
149149
</dependency>
150150

151151
<dependency>
@@ -162,7 +162,7 @@
162162
<dependency>
163163
<groupId>com.fasterxml.uuid</groupId>
164164
<artifactId>java-uuid-generator</artifactId>
165-
<version>4.3.0</version>
165+
<version>5.1.0</version>
166166
</dependency>
167167

168168
<dependency>
@@ -191,7 +191,7 @@
191191
<dependency>
192192
<groupId>org.jline</groupId>
193193
<artifactId>jline</artifactId>
194-
<version>3.25.1</version>
194+
<version>3.29.0</version>
195195
</dependency>
196196

197197
<dependency>
@@ -233,13 +233,13 @@
233233
<dependency>
234234
<groupId>commons-logging</groupId>
235235
<artifactId>commons-logging</artifactId>
236-
<version>1.3.0</version>
236+
<version>1.3.5</version>
237237
</dependency>
238238

239239
<dependency>
240240
<groupId>org.apache.commons</groupId>
241241
<artifactId>commons-pool2</artifactId>
242-
<version>2.12.0</version>
242+
<version>2.12.1</version>
243243
</dependency>
244244

245245
<dependency>
@@ -432,7 +432,7 @@
432432
<dependency>
433433
<groupId>com.fifesoft</groupId>
434434
<artifactId>rsyntaxtextarea</artifactId>
435-
<version>3.3.4</version>
435+
<version>3.6.0</version>
436436
</dependency>
437437

438438
<dependency>

0 commit comments

Comments
 (0)