Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save khauser/5bd4b42903b364e57c5b to your computer and use it in GitHub Desktop.
Save khauser/5bd4b42903b364e57c5b to your computer and use it in GitHub Desktop.
buildscript {
ext {
springBootVersion = "1.3.3.RELEASE"
}
repositories {
mavenCentral()
maven { url "https://repo.spring.io/milestone" }
maven { url "https://repo.spring.io/snapshot" }
}
dependencies {
classpath("org.springframework.boot:spring-boot-gradle-plugin:${springBootVersion}")
classpath("io.spring.gradle:dependency-management-plugin:0.5.6.RELEASE")
classpath("org.kt3k.gradle.plugin:coveralls-gradle-plugin:2.6.3")
}
}
...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment