Skip to content

Commit

Permalink
Exclude deps only for external files
Browse files Browse the repository at this point in the history
  • Loading branch information
lognaturel committed Sep 9, 2024
1 parent c0fd76f commit 1d04908
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,10 @@ sourceCompatibility = '1.8'

dependencies {
compile group: 'net.sf.kxml', name: 'kxml2', version: '2.3.0'
compile group: 'org.getodk', name: 'javarosa', version: '4.4.1'
compile (group: 'org.getodk', name: 'javarosa', version: '4.4.1') {
exclude group: "com.fasterxml.jackson.core" // only relevant for attached geojson files
exclude group: "org.apache.commons", module: "commons-csv" // only relevant for attached csv files
}
compile group: 'org.slf4j', name: 'slf4j-nop', version: '1.7.25'
testCompile 'junit:junit:4.13.2'
testCompile 'org.hamcrest:hamcrest-all:1.3'
Expand Down

0 comments on commit 1d04908

Please sign in to comment.