mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-11-22 14:22:05 +01:00
Bump junit to 5.2.0
This commit is contained in:
parent
a415a90ac7
commit
4cff9ddfa0
3 changed files with 8 additions and 3 deletions
|
@ -98,7 +98,7 @@ allprojects {
|
||||||
].collect{ project(it) }
|
].collect{ project(it) }
|
||||||
androidBootClasspath = getAndroidRuntimeJar()
|
androidBootClasspath = getAndroidRuntimeJar()
|
||||||
androidJavadocOffline = getAndroidJavadocOffline()
|
androidJavadocOffline = getAndroidJavadocOffline()
|
||||||
junitVersion = '4.11'
|
junitVersion = '5.2.0'
|
||||||
}
|
}
|
||||||
group = 'org.igniterealtime.smack'
|
group = 'org.igniterealtime.smack'
|
||||||
sourceCompatibility = 1.7
|
sourceCompatibility = 1.7
|
||||||
|
|
|
@ -16,7 +16,8 @@ dependencies {
|
||||||
compile "org.jxmpp:jxmpp-jid:$jxmppVersion"
|
compile "org.jxmpp:jxmpp-jid:$jxmppVersion"
|
||||||
compile "org.minidns:minidns-core:$miniDnsVersion"
|
compile "org.minidns:minidns-core:$miniDnsVersion"
|
||||||
testCompile "org.jxmpp:jxmpp-jid:$jxmppVersion:tests"
|
testCompile "org.jxmpp:jxmpp-jid:$jxmppVersion:tests"
|
||||||
testCompile "junit:junit:$junitVersion"
|
testCompile "org.junit.jupiter:junit-jupiter-api:$junitVersion"
|
||||||
|
testCompile "org.junit.vintage:junit-vintage-engine:$junitVersion"
|
||||||
testCompile "org.xmlunit:xmlunit-core:$xmlUnitVersion"
|
testCompile "org.xmlunit:xmlunit-core:$xmlUnitVersion"
|
||||||
testCompile "org.xmlunit:xmlunit-legacy:$xmlUnitVersion"
|
testCompile "org.xmlunit:xmlunit-legacy:$xmlUnitVersion"
|
||||||
testCompile "org.powermock:powermock-module-junit4:1.6.4"
|
testCompile "org.powermock:powermock-module-junit4:1.6.4"
|
||||||
|
|
|
@ -15,7 +15,11 @@ dependencies {
|
||||||
compile project(':smack-debug')
|
compile project(':smack-debug')
|
||||||
compile 'org.reflections:reflections:0.9.9-RC1'
|
compile 'org.reflections:reflections:0.9.9-RC1'
|
||||||
compile 'eu.geekplace.javapinning:java-pinning-java7:1.1.0-alpha1'
|
compile 'eu.geekplace.javapinning:java-pinning-java7:1.1.0-alpha1'
|
||||||
compile "junit:junit:$junitVersion"
|
// Note that the junit-vintage-engine runtime dependency is not
|
||||||
|
// directly required, but it declares a dependency to
|
||||||
|
// junit:junit:4.12, which we currently need in sinttest, since it
|
||||||
|
// (ab)uses @Before from org.junit
|
||||||
|
compile "org.junit.vintage:junit-vintage-engine:$junitVersion"
|
||||||
testCompile "org.jxmpp:jxmpp-jid:$jxmppVersion:tests"
|
testCompile "org.jxmpp:jxmpp-jid:$jxmppVersion:tests"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue