Skip to content

Commit

Permalink
Getting rid of Fatjar, which is no longer supported
Browse files Browse the repository at this point in the history
  • Loading branch information
SeanTater committed Nov 12, 2014
1 parent 6dbfb61 commit 26ba1e9
Showing 1 changed file with 2 additions and 14 deletions.
16 changes: 2 additions & 14 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,8 @@ buildscript {
}
dependencies {
classpath 'de.undercouch:gradle-download-task:0.5'
classpath 'eu.appsatori:gradle-fatjar-plugin:0.2-rc1'
}
}
apply plugin: 'fatjar'

// Dependencies and where to get them (some are nonstandard)
repositories {
Expand Down Expand Up @@ -65,8 +63,8 @@ dependencies {
compile "org.apache.opennlp:opennlp-tools:1.5.3"

// Stanford CoreNLP
compile 'edu.stanford.nlp:stanford-corenlp:3.3.1'
compile 'edu.stanford.nlp:stanford-corenlp:3.3.1:models'
compile 'edu.stanford.nlp:stanford-corenlp:3.5.0'
compile 'edu.stanford.nlp:stanford-corenlp:3.5.0:models'

// WebDAV
compile 'com.github.lookfirst:sardine:5.1'
Expand Down Expand Up @@ -115,16 +113,6 @@ test {
}
}

fatJar {
manifest {
attributes "Main-Class": "uncc2014watsonsim.WatsonSim"
// This prevents nested signatures (which will fail if included)
exclude 'META-INF/*.DSA'
exclude 'META-INF/*.RSA'
exclude 'META-INF/*.SF'
}
}

distZip {
// Creates the zipfile distributed to class
into(project.name + "-" + project.version) {
Expand Down

0 comments on commit 26ba1e9

Please sign in to comment.