dev --- 3.8.0.A版本, openProject引用 ; formao-live --- 3.7.0.B 版本, formallProject引用
Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

34 Zeilen
1.1 KiB

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