| 12345678910111213141516171819202122 |
- group = 'com.uas.weixin'
- version = '0.0.1-SNAPSHOT'
- apply plugin: 'java'
- apply from: "$projectDir/gradle/publish.gradle"
- sourceCompatibility = 1.8
- repositories {
- jcenter()
- mavenCentral()
- }
- dependencies {
- compile('org.apache.commons:commons-lang3:3.7')
- compile('commons-codec:commons-codec:1.11')
- compile('com.thoughtworks.xstream:xstream:1.4.10')
- compile('com.fasterxml.jackson.core:jackson-core:2.9.4')
- compile('com.fasterxml.jackson.core:jackson-databind:2.9.4')
- compile('org.apache.httpcomponents:httpclient:4.5.3')
- compile('org.apache.logging.log4j:log4j-api:2.10.0')
- }
|