Skip to content

Commit

Permalink
Remove jackson library from compile dependencies #104
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Subbotin committed Mar 11, 2019
1 parent f0b0f1f commit b5d6855
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -239,17 +239,20 @@ configure(core) {
exclude(group: 'junit', module: 'junit')
exclude(group: 'log4j', module: 'log4j')
exclude(group: 'org.slf4j', module: 'slf4j-log4j12')
exclude(group: 'com.fasterxml.jackson.core')
}
compile(group: "org.docx4j", name: "docx4j-ImportXHTML", version: "6.1.0") {
exclude(group: 'junit', module: 'junit')
exclude(group: 'org.apache.poi', module: 'poi')
exclude(group: 'log4j', module: 'log4j')
exclude(group: 'org.slf4j', module: 'slf4j-log4j12')
exclude(group: 'com.fasterxml.jackson.core')
}
compile(group: "org.docx4j", name: "docx4j-export-fo", version: "6.1.0") {
exclude(group: 'junit', module: 'junit')
exclude(group: 'log4j', module: 'log4j')
exclude(group: 'org.slf4j', module: 'slf4j-log4j12')
exclude(group: 'com.fasterxml.jackson.core')
}
compile(group: "org.jsoup", name: "jsoup", version: "1.10.3")
compile(group: "com.jayway.jsonpath", name: "json-path", version: "2.1.0")
Expand Down

0 comments on commit b5d6855

Please sign in to comment.