Created
May 28, 2020 03:36
-
-
Save CurtisNewbie/4037c1c6e051db0d3d3b709d3a8868d8 to your computer and use it in GitHub Desktop.
Simple script to create spring boot project that doesn't have extensions
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
| echo -e '\n'Initiating Spring Boot Starter | |
| echo -e '\n'Enter Artifact Name: | |
| read artName | |
| echo -e '\n'Enter Group Name: | |
| read groupName | |
| mkdir $artName && cd $artName | |
| curl https://start.spring.io/starter.zip -d language=java -d packageName=$groupName -d name=$artName -o $artName.zip | |
| unzip $artName.zip | |
| rm ./$artName.zip |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment