generated from root/miduo_server
29 lines
956 B
Groovy
29 lines
956 B
Groovy
group 'loginserver'
|
|
version '1.0-SNAPSHOT'
|
|
|
|
apply plugin: 'java'
|
|
apply plugin: 'war'
|
|
|
|
sourceCompatibility = 1.8
|
|
|
|
repositories {
|
|
mavenLocal()
|
|
mavenCentral()
|
|
}
|
|
|
|
dependencies {
|
|
testCompile group: 'junit', name: 'junit', version: '4.11'
|
|
compile("javax.servlet:servlet-api:2.5")
|
|
compile group: 'org.mongodb', name: 'mongo-java-driver', version: '3.2.2'
|
|
compile("ch.qos.logback:logback-core:1.1.11")
|
|
compile("ch.qos.logback:logback-classic:1.1.11")
|
|
compile("org.apache.poi:poi-ooxml:3.12")
|
|
compile group: 'redis.clients', name: 'jedis', version: '2.9.0'
|
|
compile group: 'com.alibaba', name: 'fastjson', version: '1.2.47'
|
|
compile group: 'jcifs', name: 'jcifs', version: '1.3.17'
|
|
compile group: 'com.google.code.gson', name: 'gson', version: '2.2.4'
|
|
// https://mvnrepository.com/artifact/org.apache.httpcomponents/httpclient
|
|
compile group: 'org.apache.httpcomponents', name: 'httpclient', version: '4.5.6'
|
|
|
|
}
|