Skip to content

Commit 838c2c0

Browse files
committed
Change dependency exclusion for JJSchema
Don't exclude json-schema-core (uses old stable version), don't exclude jersey-core (now only requires jsr311), but do exclude Guava (more recent version provided). Signed-off-by: Francis Galiegue <[email protected]>
1 parent f7aad72 commit 838c2c0

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

project.gradle

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,8 +35,7 @@ dependencies {
3535
compile(group: "com.github.fge", name: "json-schema-validator",
3636
version: "2.1.2");
3737
compile(group: "com.github.reinert", name: "jjschema", version: "0.6") {
38-
exclude(group: "com.sun.jersey", module: "jersey-core");
39-
exclude(group: "com.github.fge", module: "json-schema-core");
38+
exclude(group: "com.google.guava", module: "guava");
4039
exclude(group: "com.fasterxml.jackson.core", module: "jackson-core");
4140
exclude(group: "com.fasterxml.jackson.core", module: "jackson-databind");
4241
}

0 commit comments

Comments
 (0)