consistency-sdk/build.gradle

36 lines
567 B
Groovy

plugins {
id 'java-library'
}
apply from: '../spotless.gradle'
group 'com.bdware.sc'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
sourceSets {
main {
java {
srcDir 'src/main/java'
}
resources {
srcDir 'src/main/resources'
}
}
test {
java {
srcDir 'src/test/java'
}
resources {
srcDir 'src/test/resources'
}
}
}
dependencies {
api project(":cm")
api project(":front-base")
testImplementation 'junit:junit:4.13.2'
}