|
| 1 | +allprojects { |
| 2 | + apply plugin: 'maven' |
| 3 | + |
| 4 | + group = 'com.github.binarywang' |
| 5 | + version = '2.1.0-SNAPSHOT' |
| 6 | +} |
| 7 | + |
| 8 | +subprojects { |
| 9 | + apply plugin: 'java' |
| 10 | + sourceCompatibility = 1.7 |
| 11 | + targetCompatibility = 1.7 |
| 12 | + |
| 13 | + |
| 14 | + repositories { |
| 15 | + mavenLocal() |
| 16 | + |
| 17 | + maven { url "http://maven.aliyun.com/nexus/content/groups/public" } |
| 18 | + } |
| 19 | + |
| 20 | + |
| 21 | + dependencies { |
| 22 | + compile group: 'org.slf4j', name: 'slf4j-api', version:'1.7.10' |
| 23 | + compile group: 'org.apache.httpcomponents', name: 'fluent-hc', version:'4.5' |
| 24 | + compile group: 'org.apache.httpcomponents', name: 'httpmime', version:'4.5' |
| 25 | + compile group: 'org.jodd', name: 'jodd-http', version:'3.6.7' |
| 26 | + compile group: 'com.google.code.gson', name: 'gson', version:'2.7' |
| 27 | + compile group: 'commons-codec', name: 'commons-codec', version:'1.10' |
| 28 | + compile group: 'commons-io', name: 'commons-io', version:'2.5' |
| 29 | + compile group: 'org.apache.commons', name: 'commons-lang3', version:'3.4' |
| 30 | + compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind', version:'2.8.0' |
| 31 | + compile group: 'redis.clients', name: 'jedis', version:'2.9.0' |
| 32 | + testCompile group: 'ch.qos.logback', name: 'logback-classic', version:'1.1.2' |
| 33 | + } |
| 34 | +} |
0 commit comments