Created
August 16, 2015 19:07
-
-
Save azmfaridee/cecab7b95b359c42e000 to your computer and use it in GitHub Desktop.
Simple "Maven" Build System for Sublime Text 3
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
Show hidden characters
| { | |
| "shell_cmd": "mvn clean compile", | |
| "working_dir": "${project_path:${folder}}", | |
| "variants": [ | |
| { | |
| "name": "Run Tests", | |
| "shell_cmd": "mvn test" | |
| }, | |
| { | |
| "name": "Run in Tomcat 7", | |
| "shell_cmd": "mvn clean compile tomcat7:run" | |
| }, | |
| { | |
| "name": "Build War", | |
| "shell_cmd": "mvn clean compile install" | |
| }, | |
| { | |
| "name": "Build War (Skip Tests)", | |
| "shell_cmd": "mvn clean compile install -DskipTests=true" | |
| }, | |
| { | |
| "name": "Deploy in Tomcat 7", | |
| "shell_cmd": "mvn clean compile tomcat7:redeploy" | |
| }, | |
| { | |
| "name": "Deploy in Tomcat 7 (Skip Tests)", | |
| "shell_cmd": "mvn clean compile tomcat7:redeploy -DskipTests=true" | |
| } | |
| ] | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment