Skip to content

Commit

Permalink
0004032: force one version of asm library
Browse files Browse the repository at this point in the history
  • Loading branch information
erilong committed Jul 3, 2019
1 parent ee545de commit 08fb77d
Showing 1 changed file with 8 additions and 0 deletions.
8 changes: 8 additions & 0 deletions symmetric-assemble/common.gradle
Expand Up @@ -8,6 +8,14 @@ configurations {
sshAntTask
}

configurations.all {
resolutionStrategy.eachDependency { DependencyResolveDetails details ->
if (details.requested.group == 'org.ow2.asm') {
details.useVersion '5.0.3'
}
}
}

dependencies {
sshAntTask 'org.apache.ant:ant-jsch:1.10.5', 'com.jcraft:jsch:0.1.55'
}
Expand Down

0 comments on commit 08fb77d

Please sign in to comment.