generated from root/miduo_server
25 lines
695 B
Groovy
25 lines
695 B
Groovy
plugins {
|
|
id 'java'
|
|
}
|
|
|
|
group 'SensitivewordFilter'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
maven { url "http://maven.aliyun.com/nexus/content/groups/public/" }
|
|
mavenLocal()
|
|
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")
|
|
}
|