mirror of
https://codeberg.org/Mercury-IM/Smack
synced 2024-10-31 22:15:59 +01:00
17 lines
469 B
Groovy
17 lines
469 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 {
|
|
api project(':smack-integration-test')
|
|
api project(':smack-omemo-signal')
|
|
}
|
|
|
|
run {
|
|
// Pass all system properties down to the "application" run
|
|
systemProperties System.getProperties()
|
|
}
|