Skip to content

Instantly share code, notes, and snippets.

@akhikhl
Created June 11, 2014 09:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save akhikhl/0cc0aba95b27b40eaac4 to your computer and use it in GitHub Desktop.
Save akhikhl/0cc0aba95b27b40eaac4 to your computer and use it in GitHub Desktop.
Simplest Gretty setup with Spring Boot
buildscript {
ext {
springBootVersion = '1.1.0.RELEASE'
}
repositories {
mavenLocal()
jcenter()
}
dependencies {
classpath "org.springframework.boot:spring-boot-loader-tools:${springBootVersion}"
classpath "org.springframework.boot:spring-boot-dependency-tools:${springBootVersion}"
classpath 'org.akhikhl.gretty:gretty-spring-boot-plugin:0.0.24'
}
}
apply plugin: 'java'
apply plugin: 'gretty-spring-boot'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment