Skip to content

Instantly share code, notes, and snippets.

@tsunejui
Last active February 23, 2024 06:28
Show Gist options
  • Save tsunejui/dac26d5567b5e08e099cacfee456a0d6 to your computer and use it in GitHub Desktop.
Save tsunejui/dac26d5567b5e08e099cacfee456a0d6 to your computer and use it in GitHub Desktop.

Create A Spring Boot Project With curl

curl https://start.spring.io/starter.tgz \
     -d type=maven-project -d language=java \
     -d platformVersion=3.1.5 -d packaging=jar \
     -d jvmVersion=21 -d groupId=com.rex \
     -d artifactId=observability \
     -d name=observability \
     -d description="Demo project for Spring Boot observability" \
     -d packageName=com.rex.observability \
     -d dependencies=web,actuator | tar -xzvf
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment