You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
469 B
17 lines
469 B
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() |
|
}
|
|
|