Skip to content

Commit

Permalink
Removing bundling of jar dependencies (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
noconnor authored Feb 27, 2019
1 parent 9ea2e26 commit 7ed46bf
Showing 1 changed file with 1 addition and 12 deletions.
13 changes: 1 addition & 12 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ apply plugin: 'jacoco'
group = 'com.github.noconnor'
sourceCompatibility = 1.8
// http://semver.org/
version = '1.10.1'
version = '1.11.0'

repositories {
mavenCentral()
Expand All @@ -20,7 +20,6 @@ dependencies {
compile "com.google.guava:guava:19.0"
compile "commons-collections:commons-collections:3.2.2"
compile 'junit:junit:4.12'
// compile 'commons-math:commons-math:1.2'
compile 'org.apache.commons:commons-math3:3.6.1'

// Reporting
Expand All @@ -34,16 +33,6 @@ dependencies {
jar {
baseName "junitperf"
duplicatesStrategy "exclude"

from {
configurations.runtime.collect {
it.isDirectory() ? it : zipTree(it)
}
} {
exclude "META-INF/*.SF"
exclude "META-INF/*.DSA"
exclude "META-INF/*.RSA"
}
}


Expand Down

0 comments on commit 7ed46bf

Please sign in to comment.