-
-
Save mcgivrer/8071d690ae38d48a6ac8 to your computer and use it in GitHub Desktop.
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
{ | |
"working_dir": "$file_path", | |
"shell_cmd":"mvn clean install", | |
"variants": [ | |
{ | |
"name": "mvn clean install", | |
"shell_cmd": "mvn clean install" | |
}, | |
{ | |
"name": "mvn full build", | |
"shell_cmd": "mvn -P full-build clean install" | |
}, | |
{ | |
"name": "mvn clean", | |
"shell_cmd": "mvn clean" | |
}, | |
{ | |
"name": "mvn skipTests", | |
"shell_cmd": "mvn clean install -DskipTests" | |
}, | |
{ | |
"name": "mvn site", | |
"shell_cmd": "mvn site" | |
}, | |
{ | |
"name": "mvn release:prepare", | |
"shell_cmd": "mvn release:prepare" | |
}, | |
{ | |
"name": "mvn release:perform", | |
"shell_cmd": "mvn release:perform" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Just Copy & paste this "Maven.sublime-build" file to ~/.config/sublime-text-3/User
and go and visit the Tools menu, a brand new Build entry relates about Maven exists.
[CTRL]+[SHIFT]+[P] will display all these new maven command.
have fun !