build.gradle 597 B

12345678910111213141516171819
  1. plugins {
  2. id "eclipse"
  3. id "org.springframework.boot" version "1.5.9.RELEASE"
  4. }
  5. dependencies {
  6. // Custom Libraries
  7. compile project(":sso-common")
  8. compile project(path: ":sso-server", configuration: "persist") // Project Lib
  9. compile("org.springframework.boot:spring-boot-starter-web")
  10. compile("org.springframework.boot:spring-boot-starter-data-jpa")
  11. compile("org.springframework.boot:spring-boot-starter-actuator")
  12. compile("mysql:mysql-connector-java:5.1.41")
  13. compile("com.alibaba:druid:1.1.6")
  14. testCompile('org.springframework.boot:spring-boot-starter-test')
  15. }