Skip to content

Instantly share code, notes, and snippets.

@tygern
Last active November 18, 2016 19:41
Show Gist options
  • Save tygern/26d08495cbea8811283e8bd7afb68781 to your computer and use it in GitHub Desktop.
Save tygern/26d08495cbea8811283e8bd7afb68781 to your computer and use it in GitHub Desktop.
security dependencies
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