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')
|
|
|
|
compile 'org.reflections:reflections:0.9.9-RC1'
|
|
|
|
compile 'eu.geekplace.javapinning:java-pinning-jar:1.0.1'
|
|
|
|
compile "junit:junit:$junitVersion"
|
|
|
|
testCompile "org.jxmpp:jxmpp-jid:$jxmppVersion:tests"
|
|
|
|
}
|
|
|
|
|
|
|
|
run {
|
|
|
|
// Pass all system properties down to the "application" run
|
|
|
|
systemProperties System.getProperties()
|
|
|
|
}
|