Skip to content

Commit

Permalink
Fix the asm mismatch errors when for gradle jettyRun task
Browse files Browse the repository at this point in the history
  • Loading branch information
kerumai committed Jun 7, 2016
1 parent c4af3a0 commit e5aaa55
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 4 deletions.
6 changes: 6 additions & 0 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,12 @@ idea {
}
}

configurations.all {
// Exclude old asm 3.x versions.
exclude group: 'asm', module: 'asm'
exclude group: 'asm', module: 'asm-all'
}

subprojects {
apply plugin: 'nebula.netflixoss'
apply plugin: 'java'
Expand Down
11 changes: 7 additions & 4 deletions zuul-netflix-webapp/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -11,11 +11,14 @@ dependencies {
compile 'com.netflix.karyon:karyon-admin:2.0.02'
compile 'com.netflix.karyon:karyon-admin-web:2.0.02'
compile 'com.netflix.karyon:karyon-extensions:2.0.02'
compile 'com.netflix.governator:governator-archaius:1.12.15'

compile 'com.netflix.blitz4j:blitz4j:1.35'
compile 'com.sun.jersey:jersey-core:1.17.1'
compile 'com.sun.jersey:jersey-server:1.17.1'
compile 'com.sun.jersey:jersey-client:1.17.1'
compile 'com.sun.jersey:jersey-servlet:1.17.1'

compile 'com.sun.jersey:jersey-core:1.19'
compile 'com.sun.jersey:jersey-server:1.19'
compile 'com.sun.jersey:jersey-client:1.19'
compile 'com.sun.jersey:jersey-servlet:1.19'

compile "org.codehaus.groovy:groovy-all:2.2.2"
providedCompile 'junit:junit-dep:4.10'
Expand Down

0 comments on commit e5aaa55

Please sign in to comment.