mirror of
https://github.com/vanitasvitae/Smack.git
synced 2024-11-22 20:12:07 +01:00
13 lines
209 B
Groovy
13 lines
209 B
Groovy
|
plugins {
|
||
|
id 'application'
|
||
|
}
|
||
|
|
||
|
application {
|
||
|
applicationDefaultJvmArgs = ["-enableassertions"]
|
||
|
}
|
||
|
|
||
|
run {
|
||
|
// Pass all system properties down to the "application" run
|
||
|
systemProperties System.getProperties()
|
||
|
}
|