Skip to content

Commit 0967bd7

Browse files
committed
Fix duplicate classes
1 parent 78b8d14 commit 0967bd7

File tree

3 files changed

+71
-62
lines changed

3 files changed

+71
-62
lines changed

dependencies.md

Lines changed: 58 additions & 57 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

doc/changes/changes_0.6.9.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,11 @@ This release fixes the following vulnerability in `provided` dependency `io.nett
2323
* Removed `org.slf4j:slf4j-api:2.0.6`
2424
* Added `org.slf4j:slf4j-jdk14:2.0.7`
2525

26+
### Runtime Dependency Updates
27+
28+
* Added `org.eclipse.parsson:parsson:1.1.2`
29+
* Removed `org.glassfish:jakarta.json:2.0.1`
30+
2631
### Test Dependency Updates
2732

2833
* Updated `com.exasol:exasol-testcontainers:6.5.1` to `6.6.0`

pom.xml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2-
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
2+
<project xmlns="http://maven.apache.org/POM/4.0.0"
3+
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
4+
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
35
<modelVersion>4.0.0</modelVersion>
46
<artifactId>udf-debugging-java</artifactId>
57
<version>0.6.9</version>
@@ -27,9 +29,9 @@
2729
<version>2.1.2</version>
2830
</dependency>
2931
<dependency>
30-
<groupId>org.glassfish</groupId>
31-
<artifactId>jakarta.json</artifactId>
32-
<version>2.0.1</version>
32+
<groupId>org.eclipse.parsson</groupId>
33+
<artifactId>parsson</artifactId>
34+
<version>1.1.2</version>
3335
<scope>runtime</scope>
3436
</dependency>
3537
<dependency>
@@ -96,7 +98,8 @@
9698
<version>1.3</version>
9799
<scope>test</scope>
98100
</dependency>
99-
<!--Integration test dependencies-->
101+
<!--Integration
102+
test dependencies-->
100103
<dependency>
101104
<groupId>com.exasol</groupId>
102105
<artifactId>exasol-testcontainers</artifactId>

0 commit comments

Comments
 (0)