2015-03-18 09:52:33 +01:00
|
|
|
apply plugin: 'application'
|
|
|
|
|
|
|
|
description = """\
|
|
|
|
Smack integration tests."""
|
|
|
|
|
|
|
|
mainClassName = 'org.igniterealtime.smack.inttest.SmackIntegrationTestFramework'
|
2015-03-19 22:38:07 +01:00
|
|
|
applicationDefaultJvmArgs = ["-enableassertions"]
|
2015-03-18 09:52:33 +01:00
|
|
|
|
|
|
|
dependencies {
|
|
|
|
compile project(':smack-java7')
|
|
|
|
compile project(':smack-tcp')
|
|
|
|
compile project(':smack-extensions')
|
2016-07-20 20:57:04 +02:00
|
|
|
compile project(':smack-experimental')
|
2017-06-02 12:26:37 +02:00
|
|
|
compile project(':smack-omemo')
|
2017-07-28 11:59:11 +02:00
|
|
|
compile project(':smack-debug')
|
2015-03-18 09:52:33 +01:00
|
|
|
compile 'org.reflections:reflections:0.9.9-RC1'
|
2016-04-14 22:59:22 +02:00
|
|
|
compile 'eu.geekplace.javapinning:java-pinning-java7:1.1.0-alpha1'
|
2018-05-09 19:59:39 +02:00
|
|
|
// 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"
|
2015-03-18 09:52:33 +01:00
|
|
|
testCompile "org.jxmpp:jxmpp-jid:$jxmppVersion:tests"
|
|
|
|
}
|
|
|
|
|
|
|
|
run {
|
|
|
|
// Pass all system properties down to the "application" run
|
|
|
|
systemProperties System.getProperties()
|
|
|
|
}
|