xpipe/api/build.gradle
Christopher Schnick c99434523c Release fixes
2022-08-13 08:36:41 +02:00

60 lines
1.5 KiB
Groovy

plugins {
id 'java-library'
id 'maven-publish'
id 'signing'
id "org.moditect.gradleplugin" version "1.0.0-rc3"
}
apply from: "$rootDir/deps/java.gradle"
apply from: "$rootDir/deps/junit.gradle"
apply from: "$rootDir/deps/jackson.gradle"
version = file('../misc/version').text
group = 'io.xpipe'
archivesBaseName = 'api'
repositories {
mavenCentral()
}
test {
enabled = true
}
dependencies {
implementation project(':core')
implementation project(':beacon')
}
configurations {
testImplementation.extendsFrom(dep)
}
def canTestWithDev = findProject(':app') != null
def home = System.getenv('XPIPE_HOME')
String daemonCommand = canTestWithDev ?
"cmd.exe /c \\\"$rootDir\\gradlew.bat\\\" :app:run" :
"cmd.exe /c \\\"$home\\app\\xpipe.exe\\\""
test {
workingDir = rootDir
// Daemon properties
systemProperty "io.xpipe.beacon.exec", daemonCommand +
" -Dio.xpipe.app.mode=tray" +
" -Dio.xpipe.beacon.port=21722" +
" -Dio.xpipe.app.dataDir=$projectDir/local/" +
" -Dio.xpipe.storage.persist=false" +
" -Dio.xpipe.app.writeSysOut=true" +
" -Dio.xpipe.app.writeLogs=true" +
// " -Dio.xpipe.beacon.debugOutput=true" +
" -Dio.xpipe.app.logLevel=trace"
// API properties
systemProperty 'io.xpipe.beacon.debugOutput', "true"
systemProperty 'io.xpipe.beacon.debugExecOutput', "true"
systemProperty "io.xpipe.beacon.port", "21722"
}
apply from: 'publish.gradle'
apply from: "$rootDir/deps/publish-base.gradle"