Use fixed versions instead of dynamic dependencies

This commit is contained in:
Florian Schmaus 2014-06-03 13:10:43 +02:00
parent c7db63612c
commit 445d175a2e
1 changed files with 4 additions and 4 deletions

View File

@ -14,11 +14,11 @@ dependencies {
compile 'xpp3:xpp3:1.1.4c'
compile "org.igniterealtime.jxmpp:jxmpp-core:$jxmppVersion"
// compile "org.igniterealtime.jxmpp:jxmpp-jid:$jxmppVersion"
testCompile 'junit:junit:4.+'
testCompile 'junit:junit:4.11'
testCompile 'xmlunit:xmlunit:1.5'
testCompile 'org.powermock:powermock-module-junit4:1.5.+'
testCompile 'org.powermock:powermock-api-mockito:1.5.+'
testCompile 'com.jamesmurty.utils:java-xmlbuilder:0.6+'
testCompile 'org.powermock:powermock-module-junit4:1.5.5'
testCompile 'org.powermock:powermock-api-mockito:1.5.5'
testCompile 'com.jamesmurty.utils:java-xmlbuilder:0.6'
}
task compressionJar(type: Jar) {