Skip to content

Commit 199a2af

Browse files
committed
0.8.5
* Bump json-schema-avro to 0.1.7 * Exclude jackson-annotations from external imports, instead relying on our own projects' jackson-databind dependencies to pull them in.
1 parent c86029b commit 199a2af

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

project.gradle

+4-2
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
* Project-specific settings. Unfortunately we cannot put the name in there!
2121
*/
2222
group = "com.github.java-json-tools";
23-
version = "0.8.5-SNAPSHOT";
23+
version = "0.8.5";
2424
sourceCompatibility = JavaVersion.VERSION_1_7;
2525
targetCompatibility = JavaVersion.VERSION_1_7; // defaults to sourceCompatibility
2626

@@ -36,16 +36,18 @@ dependencies {
3636
version: "2.2.13");
3737
compile(group: "com.github.reinert", name: "jjschema", version: "1.16") {
3838
exclude(group: "com.google.guava", module: "guava");
39+
exclude(group: "com.fasterxml.jackson.core", module: "jackson-annotations");
3940
exclude(group: "com.fasterxml.jackson.core", module: "jackson-core");
4041
exclude(group: "com.fasterxml.jackson.core", module: "jackson-databind");
4142
}
4243
compile(group: "org.jsonschema2pojo",
4344
name: "jsonschema2pojo-core", version: "1.0.1") {
45+
exclude(group: "com.fasterxml.jackson.core", module: "jackson-annotations");
4446
exclude(group: "com.fasterxml.jackson.core", module: "jackson-core");
4547
exclude(group: "com.fasterxml.jackson.core", module: "jackson-databind");
4648
}
4749
compile(group: "com.github.java-json-tools", name: "json-schema-avro",
48-
version: "0.1.6");
50+
version: "0.1.7");
4951
compile(group: "com.github.java-json-tools", name: "json-patch",
5052
version: "1.12");
5153
testCompile(group: "org.testng", name: "testng", version: "7.1.0") {

0 commit comments

Comments
 (0)