mirror of
https://gitee.com/BDWare/front-base
synced 2025-01-10 01:44:01 +00:00
31 lines
594 B
Groovy
31 lines
594 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
id 'java-library'
|
||
|
}
|
||
|
|
||
|
sourceSets {
|
||
|
main {
|
||
|
java {
|
||
|
srcDirs 'src/main/src', 'src/main/thirdparty', 'src/main/test'
|
||
|
}
|
||
|
resources {
|
||
|
srcDir 'src/main/resources'
|
||
|
}
|
||
|
}
|
||
|
test {
|
||
|
java {
|
||
|
srcDir 'src/test/java'
|
||
|
}
|
||
|
resources {
|
||
|
srcDir 'src/test/resources'
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
dependencies {
|
||
|
api project (":common")
|
||
|
api 'io.netty:netty-tcnative-boringssl-static:2.0.41.Final'
|
||
|
api 'com.google.code.gson:gson:2.8.8'
|
||
|
|
||
|
testImplementation 'junit:junit:4.13.2'
|
||
|
}
|