mirror of
https://github.com/xpipe-io/xpipe.git
synced 2024-11-22 07:30:24 +00:00
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.app.fullVersion', "true"
|
|
systemProperty 'io.xpipe.beacon.printDaemonOutput', "false"
|
|
systemProperty 'io.xpipe.app.useVirtualThreads', "false"
|
|
systemProperty "io.xpipe.beacon.port", "21723"
|
|
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"
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|