Last active
November 18, 2016 19:41
-
-
Save tygern/26d08495cbea8811283e8bd7afb68781 to your computer and use it in GitHub Desktop.
security dependencies
This file contains hidden or 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
buildscript { | |
repositories { mavenCentral() } | |
dependencies { | |
classpath "org.springframework.boot:spring-boot-gradle-plugin:1.4.1.RELEASE" | |
} | |
} | |
apply plugin: "java" | |
apply plugin: "spring-boot" | |
sourceCompatibility = 1.8 | |
targetCompatibility = 1.8 | |
repositories { mavenCentral() } | |
dependencies { | |
compile "org.springframework.boot:spring-boot-starter-web" | |
compile "org.springframework.cloud:spring-cloud-starter-oauth2" | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment