mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 15:40:23 +00:00
3e7fbe89ac
The changes have been squashed as the commit history and messages were not very carefully crafted. There isn't that much value in preserving random commit messages. Also due to diverging branches, rebasing or merging it was difficult.
37 lines
1.3 KiB
Groovy
37 lines
1.3 KiB
Groovy
apply from: "$rootDir/gradle/gradle_scripts/junit.gradle"
|
|
|
|
testing {
|
|
suites {
|
|
localTest(JvmTestSuite) {
|
|
useJUnitJupiter()
|
|
|
|
dependencies {
|
|
implementation project(':core')
|
|
implementation project(':beacon')
|
|
implementation project(':app')
|
|
implementation project(':base')
|
|
implementation project()
|
|
}
|
|
|
|
targets {
|
|
all {
|
|
testTask.configure {
|
|
workingDir = rootDir
|
|
|
|
jvmArgs += ["-Xmx2g"]
|
|
jvmArgs += jvmRunArgs
|
|
|
|
systemProperty 'io.xpipe.beacon.printDaemonOutput', "false"
|
|
systemProperty 'io.xpipe.app.useVirtualThreads', "false"
|
|
systemProperty "io.xpipe.beacon.port", "21725"
|
|
systemProperty "io.xpipe.beacon.launchDebugDaemon", "true"
|
|
systemProperty "io.xpipe.app.dataDir", "$projectDir/local/"
|
|
systemProperty "io.xpipe.app.logLevel", "trace"
|
|
systemProperty "io.xpipe.app.writeSysOut", "true"
|
|
systemProperty "io.xpipe.app.mode", "tray"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|