Created
November 27, 2017 05:11
-
-
Save knjname/14f713f5456c27212c93e2fd1c61ce6f to your computer and use it in GitHub Desktop.
bootRun
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 customizedBootRun(type: JavaExec) { | |
| dependsOn bootRun.getTaskDependencies() | |
| // Customize | |
| args = ["something", "you", "need"] | |
| jvmArgs = ["-Dspring.profiles.active=development"] | |
| classpath = sourceSets.main.runtimeClasspath | |
| main = "your.main.ClassName" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment