2021-09-24 17:53:32 +08:00
|
|
|
plugins {
|
|
|
|
id 'java'
|
|
|
|
}
|
|
|
|
|
|
|
|
group 'SensitivewordFilter'
|
|
|
|
version '1.0-SNAPSHOT'
|
|
|
|
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
|
|
|
|
repositories {
|
2021-09-26 14:42:00 +08:00
|
|
|
maven { url "http://maven.aliyun.com/nexus/content/groups/public/" }
|
|
|
|
mavenLocal()
|
2021-09-24 17:53:32 +08:00
|
|
|
mavenCentral()
|
|
|
|
}
|
|
|
|
|
|
|
|
dependencies {
|
|
|
|
testCompile group: 'junit', name: 'junit', version: '4.12'
|
|
|
|
compile("org.apache.thrift:libthrift:0.9.2")
|
|
|
|
compile("ch.qos.logback:logback-core:1.1.11")
|
|
|
|
compile("ch.qos.logback:logback-classic:1.1.11")
|
|
|
|
compile("org.springframework.boot:spring-boot:1.5.9.RELEASE")
|
|
|
|
compile("org.springframework.boot:spring-boot-starter-test:1.5.9.RELEASE")
|
|
|
|
compile("org.springframework.boot:spring-boot-starter-data-redis:1.5.9.RELEASE")
|
|
|
|
}
|