Created
January 7, 2019 15:53
-
-
Save kventil/13e5bde0fbb180f3c70debc747a083a6 to your computer and use it in GitHub Desktop.
Dependencies
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
dependencies { | |
compile group: 'org.springframework.boot', name: 'spring-boot-starter-web' | |
compile group: 'org.springframework.boot', name: 'spring-boot-starter-security' | |
compile group: 'com.microsoft.azure', name: 'azure-active-directory-spring-boot-starter', version: '2.0.4' | |
compile group: 'org.springframework.security', name: 'spring-security-oauth2-client' | |
compile group: 'org.springframework.security', name: 'spring-security-oauth2-jose' | |
compile group: 'org.springframework.boot', name: 'spring-boot-devtools' | |
compile group: 'com.fasterxml.jackson.core', name: 'jackson-databind' | |
compile group: 'com.fasterxml.jackson.datatype', name: 'jackson-datatype-jdk8', version: '2.9.7' | |
compile group: 'javax.xml.bind', name:'jaxb-api', version: '2.2.11' | |
compile group: 'org.flywaydb', name: 'flyway-core', version: '5.2.0' | |
compile group: 'postgresql', name: 'postgresql' , version:'9.1-902.jdbc4' | |
compile group: 'org.jdbi', name: 'jdbi3-postgres', version: '3.5.1' | |
//enable swagger documentationf or the APIs | |
compile group: 'io.springfox', name: 'springfox-swagger2', version: '2.9.2' | |
compile group: 'io.springfox', name: 'springfox-swagger-ui', version: '2.9.2' | |
compile("org.springframework.boot:spring-boot-devtools") | |
testCompile group: 'junit', name: 'junit', version: '4.+' | |
testCompile group: 'org.mockito', name: 'mockito-core', version:'1.+' | |
annotationProcessor("org.projectlombok:lombok:1.18.4") | |
testCompile("org.projectlombok:lombok:1.18.4") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment