sysmon/build.gradle

47 lines
1017 B
Groovy
Raw Normal View History

2021-05-01 12:44:55 +00:00
subprojects {
2021-05-21 09:08:43 +00:00
buildscript {
repositories {
maven { url("https://plugins.gradle.org/m2/") }
}
dependencies {
classpath 'org.redline-rpm:redline:1.2.9'
}
}
2021-05-01 12:44:55 +00:00
apply plugin: 'java'
apply plugin: 'groovy'
2021-05-01 12:44:55 +00:00
dependencies {
2021-05-21 09:08:43 +00:00
testImplementation 'org.spockframework:spock-core:2.0-groovy-3.0'
testImplementation "org.slf4j:slf4j-api:${slf4jVersion}"
2021-05-28 06:19:49 +00:00
testImplementation "org.slf4j:slf4j-simple:${slf4jVersion}"
implementation "org.slf4j:slf4j-api:${slf4jVersion}"
implementation "org.slf4j:slf4j-simple:${slf4jVersion}"
2021-05-28 13:52:33 +00:00
2021-05-01 12:44:55 +00:00
}
repositories {
mavenLocal()
mavenCentral()
}
sourceCompatibility = 1.8
targetCompatibility = 1.8
}
tasks.create("packages") {
group "build"
dependsOn ":client:buildDeb"
dependsOn ":client:buildRpm"
dependsOn ":server:buildDeb"
dependsOn ":server:buildRpm"
dependsOn ":plugins:buildDeb"
dependsOn ":plugins:buildRpm"
}