weixin-java-tools/build.gradle

35 lines
1.2 KiB
Groovy
Raw Normal View History

2016-08-29 23:44:53 +08:00
allprojects {
apply plugin: 'maven'
group = 'com.github.binarywang'
2016-12-01 10:08:50 +08:00
version = '2.4.0'
2016-08-29 23:44:53 +08:00
}
subprojects {
apply plugin: 'java'
sourceCompatibility = 1.7
targetCompatibility = 1.7
2016-09-25 01:00:54 +08:00
repositories {
mavenLocal()
maven { url "http://central.maven.org/maven2" }
//maven { url "http://maven.aliyun.com/nexus/content/groups/public" }
2016-09-25 01:00:54 +08:00
}
2016-08-29 23:44:53 +08:00
dependencies {
compile group: 'org.slf4j', name: 'slf4j-api', version:'1.7.10'
compile group: 'org.apache.httpcomponents', name: 'httpmime', version:'4.5'
2016-11-01 19:16:17 +08:00
compile group: 'org.apache.httpcomponents', name: 'httpclient', version:'4.5'
2016-08-29 23:44:53 +08:00
compile group: 'com.google.code.gson', name: 'gson', version:'2.7'
2016-09-25 01:17:44 +08:00
compile group: 'com.google.guava', name: 'guava', version:'19.0'
2016-08-29 23:44:53 +08:00
compile group: 'commons-codec', name: 'commons-codec', version:'1.10'
compile group: 'commons-io', name: 'commons-io', version:'2.5'
compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.4'
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version:'2.8.0'
compile group: 'redis.clients', name: 'jedis', version:'2.9.0'
testCompile group: 'ch.qos.logback', name: 'logback-classic', version:'1.1.2'
}
}