build.gradle 614 B

12345678910111213141516171819202122
  1. group = 'com.uas.weixin'
  2. version = '0.0.1-SNAPSHOT'
  3. apply plugin: 'java'
  4. apply from: "$projectDir/gradle/publish.gradle"
  5. sourceCompatibility = 1.8
  6. repositories {
  7. jcenter()
  8. mavenCentral()
  9. }
  10. dependencies {
  11. compile('org.apache.commons:commons-lang3:3.7')
  12. compile('commons-codec:commons-codec:1.11')
  13. compile('com.thoughtworks.xstream:xstream:1.4.10')
  14. compile('com.fasterxml.jackson.core:jackson-core:2.9.4')
  15. compile('com.fasterxml.jackson.core:jackson-databind:2.9.4')
  16. compile('org.apache.httpcomponents:httpclient:4.5.3')
  17. compile('org.apache.logging.log4j:log4j-api:2.10.0')
  18. }