consistency-sdk/build.gradle
2022-02-17 17:06:10 +08:00

38 lines
570 B
Groovy

plugins {
id 'java-library'
}
group 'com.bdware.sc'
version '1.0-SNAPSHOT'
sourceCompatibility = 1.8
repositories {
mavenCentral()
}
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'
}