Skip to content

Instantly share code, notes, and snippets.

@azmfaridee
Created August 16, 2015 19:07
Show Gist options
  • Select an option

  • Save azmfaridee/cecab7b95b359c42e000 to your computer and use it in GitHub Desktop.

Select an option

Save azmfaridee/cecab7b95b359c42e000 to your computer and use it in GitHub Desktop.
Simple "Maven" Build System for Sublime Text 3
{
"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