generated from root/miduo_server
23 lines
605 B
Groovy
23 lines
605 B
Groovy
|
plugins {
|
||
|
id 'java'
|
||
|
}
|
||
|
|
||
|
group 'SensitivewordFilter'
|
||
|
version '1.0-SNAPSHOT'
|
||
|
|
||
|
sourceCompatibility = 1.8
|
||
|
|
||
|
repositories {
|
||
|
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")
|
||
|
}
|