enable auto jackson deps for third parties
This commit is contained in:
parent
65769e5c1c
commit
37e8cc90aa
8 changed files with 7 additions and 10 deletions
|
@ -1,5 +1,4 @@
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':content-json')
|
api project(':content-json')
|
||||||
api project(':content-yaml')
|
api project(':content-yaml')
|
||||||
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:${project.property('jackson.version')}"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,5 @@
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':content-api')
|
api project(':content-api')
|
||||||
api "org.xbib:datastructures-tiny:${project.property('xbib-datastructures-tiny.version')}"
|
api "org.xbib:datastructures-tiny:${project.property('xbib-datastructures-tiny.version')}"
|
||||||
implementation "com.fasterxml.jackson.core:jackson-core:${project.property('jackson.version')}"
|
api "com.fasterxml.jackson.core:jackson-core:${project.property('jackson.version')}"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':content-core')
|
api project(':content-core')
|
||||||
api project(':content-settings')
|
api project(':content-settings')
|
||||||
implementation "com.fasterxml.jackson.core:jackson-databind:${project.property('jackson.version')}"
|
api "com.fasterxml.jackson.core:jackson-databind:${project.property('jackson.version')}"
|
||||||
testImplementation("org.mockito:mockito-core:${project.property('mockito.version')}") {
|
testImplementation("org.mockito:mockito-core:${project.property('mockito.version')}") {
|
||||||
exclude group: 'org.hamcrest'
|
exclude group: 'org.hamcrest'
|
||||||
}
|
}
|
||||||
|
|
|
@ -3,5 +3,4 @@ dependencies {
|
||||||
implementation project(':content-resource')
|
implementation project(':content-resource')
|
||||||
implementation project(':content-xml')
|
implementation project(':content-xml')
|
||||||
implementation project(':content-json')
|
implementation project(':content-json')
|
||||||
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:${project.property('jackson.version')}"
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,5 +1,4 @@
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':content-core')
|
api project(':content-core')
|
||||||
implementation "com.fasterxml.jackson.core:jackson-core:${project.property('jackson.version')}"
|
|
||||||
testImplementation project(":content-json")
|
testImplementation project(":content-json")
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':content-core')
|
api project(':content-core')
|
||||||
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-smile:${project.property('jackson.version')}"
|
api "com.fasterxml.jackson.dataformat:jackson-dataformat-smile:${project.property('jackson.version')}"
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
dependencies {
|
dependencies {
|
||||||
implementation project(':content-core')
|
api project(':content-core')
|
||||||
implementation project(':content-resource')
|
api project(':content-resource')
|
||||||
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:${project.property('jackson.version')}"
|
api "com.fasterxml.jackson.dataformat:jackson-dataformat-xml:${project.property('jackson.version')}"
|
||||||
runtimeOnly "com.fasterxml.woodstox:woodstox-core:${project.property('woodstox.version')}"
|
runtimeOnly "com.fasterxml.woodstox:woodstox-core:${project.property('woodstox.version')}"
|
||||||
testImplementation project(':content-json') // for XContentHelper reading JSON
|
testImplementation project(':content-json') // for XContentHelper reading JSON
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':content-core')
|
api project(':content-core')
|
||||||
api project(':content-settings')
|
api project(':content-settings')
|
||||||
implementation "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:${project.property('jackson.version')}"
|
api "com.fasterxml.jackson.dataformat:jackson-dataformat-yaml:${project.property('jackson.version')}"
|
||||||
implementation "org.yaml:snakeyaml:${project.property('snakeyaml.version')}"
|
implementation "org.yaml:snakeyaml:${project.property('snakeyaml.version')}"
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue