Skip to content

Commit

Permalink
exclude seisFile transitive dependencies we don not need
Browse files Browse the repository at this point in the history
  • Loading branch information
crotwell committed Mar 29, 2017
1 parent f635b1d commit 97c36dc
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,16 @@
apply plugin: 'maven'
apply plugin: 'signing'

configurations {
// we need seisFile for sac output, but not all the other functionality
all*.exclude group: "com.martiansoftware", module: "jsap"
all*.exclude group: "org.rxtx", module: "rxtx"
all*.exclude group: "org.codehaus.woodstox", module: "woodstox-core-lgpl"
all*.exclude group: "net.java.dev.msv", module: "msv-core"
all*.exclude group: "org.apache.httpcomponents", module: "httpclient"
all*.exclude group: "mysql", module: "mysql-connector-java"
}

dependencies {
compile project(':seisFile')
}
Expand Down

0 comments on commit 97c36dc

Please sign in to comment.