Last active
August 1, 2022 06:47
-
-
Save akottr/6164036 to your computer and use it in GitHub Desktop.
For maven build put this file into ~/.config/sublime-text-3/Packages/User. Choose Tools -> Build System -> Maven. Ctrl+Shift+ P shows the entries (e.g mvn clean)
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
{ | |
"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" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment