| 12345678910111213141516171819 |
- plugins {
- id "eclipse"
- id "org.springframework.boot" version "1.5.9.RELEASE"
- }
- dependencies {
- // Custom Libraries
- compile project(":sso-common")
- compile project(path: ":sso-server", configuration: "persist") // Project Lib
- compile("org.springframework.boot:spring-boot-starter-web")
- compile("org.springframework.boot:spring-boot-starter-data-jpa")
- compile("org.springframework.boot:spring-boot-starter-actuator")
- compile("mysql:mysql-connector-java:5.1.41")
- compile("com.alibaba:druid:1.1.6")
- testCompile('org.springframework.boot:spring-boot-starter-test')
- }
|