Skip to content

Commit 2490527

Browse files
Change the JSON-P implementation from Glassfish to Parsson (#63) (#65)
Co-authored-by: Sylvain Wallez <sylvain@elastic.co>
1 parent aea0114 commit 2490527

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

java-client/build.gradle.kts

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -126,10 +126,14 @@ dependencies {
126126
// https://search.maven.org/artifact/com.google.code.findbugs/jsr305
127127
api("com.google.code.findbugs:jsr305:3.0.2")
128128

129-
// Needed even if using Jackson to have an implementation of the Jsonp object model
130129
// EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
131130
// https://github.com/eclipse-ee4j/jsonp
132-
api("org.glassfish", "jakarta.json", "2.0.1")
131+
api("jakarta.json:jakarta.json-api:2.0.1")
132+
133+
// Needed even if using Jackson to have an implementation of the Jsonp object model
134+
// EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
135+
// https://github.com/eclipse-ee4j/parsson
136+
api("org.eclipse.parsson:parsson:1.0.0")
133137

134138
// EPL-2.0 OR GPL-2.0 WITH Classpath-exception-2.0
135139
// http://json-b.net/

0 commit comments

Comments
 (0)