buildscript {
repositories {
mavenCentral()
dependencies {
if(project.hasProperty('sealights')){
classpath 'io.sealights.on-premise.agents.plugin:sealights-gradle-plugin:latest.release'
}
}
}
}
allprojects { p ->
if(project.hasProperty('sealights')){
apply plugin: 'io.sealights.on-premise.agents.plugin.sealights-gradle-plugin'
sealights {
tokenFile = "./sltoken.txt"
createBuildSessionId = false
buildSessionIdFile = "./buildSessionId.txt"
// buildSessionId = System.getenv('SL_BUILD_SESSION_ID')
filesStorage="/tmp"
logEnabled = false
logLevel = "WARN"
logToFile = false
logToConsole = true
runTestOnly=true
testTasksAndStages=["test":"Functional Tests"]
// proxy = "http://localhost:8888"
// testListenerJvmParams=["sl.param1":"true","sl.param2":"value"]
}
}
} |