build.gradle 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. buildscript {
  2. repositories {
  3. mavenLocal()
  4. maven { url "http://maven.aliyun.com/nexus/content/groups/public" }
  5. mavenCentral()
  6. }
  7. dependencies {
  8. classpath("$bootGroup:spring-boot-gradle-plugin:$springBootVersion")
  9. }
  10. }
  11. apply plugin: "$bootGroup"
  12. apply plugin: 'io.spring.dependency-management'
  13. dependencies {
  14. compile project(":common:utils")
  15. compile project(":common:data")
  16. compile project(":dao:dao-interface")
  17. compile project(":dao:dao-sql")
  18. compile fileTree(dir: 'src/main/lib', include: '*.jar')
  19. compile("$bootGroup:spring-boot-starter-web")
  20. compile("$bootGroup:spring-boot-starter-undertow")
  21. compile("$bootGroup:spring-boot-starter-websocket")
  22. compile('org.apache.logging.log4j:log4j-core:2.15.0')
  23. compile('org.apache.logging.log4j:log4j-jul:2.15.0')
  24. compile('org.apache.logging.log4j:log4j-api:2.15.0')
  25. compile('org.apache.logging.log4j:log4j-slf4j-impl:2.15.0')
  26. //compile 'mysql:mysql-connector-java:5.1.28'
  27. compile 'com.alibaba:druid:1.0.25'
  28. compile 'com.alibaba:fastjson:1.2.17'
  29. compile('org.codehaus.groovy:groovy-all:2.4.15')
  30. testCompile("$bootGroup:spring-boot-starter-test")
  31. compile("com.netflix.feign:feign-core:8.18.0")
  32. compile("com.netflix.feign:feign-jackson:8.18.0")
  33. }