Skip to content

Commit

Permalink
Excluded an unneeded transient dependency. Shaded a Google dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
Tom Akehurst committed Nov 5, 2018
1 parent 72ea24a commit 7fd45b0
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 @@ -68,7 +68,9 @@ dependencies {
compile "com.github.jknack:handlebars:$versions.handlebars", {
exclude group: 'org.mozilla', module: 'rhino'
}
compile "com.github.jknack:handlebars-helpers:$versions.handlebars"
compile("com.github.jknack:handlebars-helpers:$versions.handlebars") {
exclude group: 'org.mozilla', module: 'rhino'
}

testCompile "org.hamcrest:hamcrest-all:1.3"
testCompile("org.jmock:jmock:2.5.1") {
Expand Down Expand Up @@ -144,6 +146,7 @@ shadowJar {
relocate "org.eclipse", 'wiremock.org.eclipse'
relocate "org.codehaus", 'wiremock.org.codehaus'
relocate "com.google.common", 'wiremock.com.google.common'
relocate "com.google.thirdparty", 'wiremock.com.google.thirdparty'
relocate "com.fasterxml.jackson", 'wiremock.com.fasterxml.jackson'
relocate "org.apache", 'wiremock.org.apache'
relocate "org.xmlunit", 'wiremock.org.xmlunit'
Expand Down

0 comments on commit 7fd45b0

Please sign in to comment.