build.gradle 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. plugins {
  2. id "org.springframework.boot" version '1.5.9.RELEASE'
  3. }
  4. apply from: "$rootDir/gradle/persist-publish.gradle"
  5. configurations {
  6. all*.exclude group: 'org.slf4j', module: 'slf4j-log4j12'
  7. }
  8. dependencies {
  9. compile project(':sso-common')
  10. compile("org.springframework.boot:spring-boot-starter-actuator")
  11. compile("org.springframework.boot:spring-boot-starter-web")
  12. compile("org.springframework.boot:spring-boot-starter-security")
  13. compile("org.springframework.boot:spring-boot-starter-data-jpa")
  14. compile("org.springframework.boot:spring-boot-starter-data-redis")
  15. compile("org.springframework:spring-tx:4.3.3.RELEASE")
  16. compile("org.springframework.session:spring-session:1.2.2.RELEASE")
  17. compile("mysql:mysql-connector-java:5.1.41")
  18. compile("com.alibaba:druid:1.1.6")
  19. compile("com.alibaba:fastjson:1.2.15")
  20. compile("com.alibaba:dubbo:2.8.4") {
  21. exclude(module: 'javax.servlet-api')
  22. exclude(module: 'httpcore')
  23. }
  24. compile("com.uas.message:message-mail-api:0.0.1")
  25. compile("com.uas.message:message-sms-api:0.0.1")
  26. compile("com.uas.account:sso-core:0.0.1")
  27. compile("com.uas.dfs:dfs-api:0.0.2")
  28. compile("org.apache.zookeeper:zookeeper:3.4.6")
  29. compile("com.github.sgroschupf:zkclient:0.1")
  30. compile("com.belerweb:pinyin4j:2.5.1")
  31. compile("commons-fileupload:commons-fileupload:1.3.2")
  32. compile("org.apache.httpcomponents:httpmime:4.4")
  33. compile("org.apache.httpcomponents:httpcore:4.4.5")
  34. compile("org.apache.httpcomponents:httpclient:4.4")
  35. testCompile("org.springframework.boot:spring-boot-starter-test")
  36. }