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 {
|
2020-04-04 13:03:31 +02:00
|
|
|
api project(':smack-java8-full')
|
2020-04-07 20:59:32 +02:00
|
|
|
api project(':smack-resolver-dnsjava')
|
2021-02-14 19:42:27 +01:00
|
|
|
implementation project(':smack-websocket-java11')
|
2021-02-14 17:41:11 +01:00
|
|
|
implementation "com.google.guava:guava:${guavaVersion}"
|
2021-04-01 17:21:49 +02:00
|
|
|
// Do not upgrade to a higher reflections version until
|
|
|
|
// https://github.com/ronmamo/reflections/issues/273 is fixed.
|
2021-04-18 18:58:50 +02:00
|
|
|
implementation "org.reflections:reflections:${orgReflectionsVersion}"
|
2021-04-14 19:24:30 +02:00
|
|
|
api 'eu.geekplace.javapinning:java-pinning-java7:1.1.0-alpha1'
|
|
|
|
implementation group: 'commons-io', name: 'commons-io', version: "$commonsIoVersion"
|
2020-04-12 21:54:18 +02:00
|
|
|
api "org.junit.jupiter:junit-jupiter-api:$junitVersion"
|
2020-04-11 21:59:21 +02:00
|
|
|
testFixturesApi(testFixtures(project(":smack-core")))
|
2021-04-14 19:24:30 +02:00
|
|
|
testImplementation "org.jxmpp:jxmpp-jid:$jxmppVersion:tests"
|
2015-03-18 09:52:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
run {
|
|
|
|
// Pass all system properties down to the "application" run
|
|
|
|
systemProperties System.getProperties()
|
|
|
|
}
|