mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-10-31 22:15:59 +01:00
18 lines
477 B
Groovy
18 lines
477 B
Groovy
|
apply plugin: 'application'
|
||
|
|
||
|
description = """\
|
||
|
Smack integration tests for OMEMO using libsignal."""
|
||
|
|
||
|
mainClassName = 'org.igniterealtime.smack.inttest.smack_omemo_signal.SmackOmemoSignalIntegrationTestFramework'
|
||
|
applicationDefaultJvmArgs = ["-enableassertions"]
|
||
|
|
||
|
dependencies {
|
||
|
compile project(':smack-integration-test')
|
||
|
compile project(':smack-omemo-signal')
|
||
|
}
|
||
|
|
||
|
run {
|
||
|
// Pass all system properties down to the "application" run
|
||
|
systemProperties System.getProperties()
|
||
|
}
|