Skip to content

Instantly share code, notes, and snippets.

@matthauck
Created July 15, 2014 06:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save matthauck/114623de824c15f86592 to your computer and use it in GitHub Desktop.
Save matthauck/114623de824c15f86592 to your computer and use it in GitHub Desktop.
Run spring-boot jar from gradle
task(boot, dependsOn: bootRepackage) << {
exec {
executable = 'java'
args = [ '-jar', jar.archivePath ]
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment