mirror of
https://gitee.com/BDWare/front-base
synced 2026-02-14 15:19:26 +00:00
initial commit
This commit is contained in:
33
build.gradle
Normal file
33
build.gradle
Normal file
@@ -0,0 +1,33 @@
|
||||
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-all:4.1.52.Final'
|
||||
api 'io.netty:netty-tcnative-boringssl-static:2.0.41.Final'
|
||||
api 'org.apache.logging.log4j:log4j-core:2.14.1'
|
||||
api 'org.apache.logging.log4j:log4j-api:2.14.1'
|
||||
api 'com.google.code.gson:gson:2.8.8'
|
||||
|
||||
testImplementation 'junit:junit:4.13.2'
|
||||
}
|
||||
Reference in New Issue
Block a user