Created
July 15, 2014 06:39
-
-
Save matthauck/114623de824c15f86592 to your computer and use it in GitHub Desktop.
Run spring-boot jar from gradle
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
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