Last active
February 15, 2018 09:16
-
-
Save ruanhao/b8673ab24c7733d733e53a1c38e2c272 to your computer and use it in GitHub Desktop.
Create Java Spring Project
This file contains 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
# -*- coding: utf-8 -*- | |
# | |
# Description: | |
# Create Java Spring Project | |
artifactId=$1 | |
spring init --groupId=haoru.cisco.com \ | |
--artifactId=$artifactId \ | |
--java-version=1.8 \ | |
--dependencies=web,actuator \ | |
--name=$artifactId \ | |
$artifactId | |
sed -i '' '/<dependencies>/a\ | |
<dependency>\ | |
<groupId>org.projectlombok</groupId>\ | |
<artifactId>lombok</artifactId>\ | |
<optional>true</optional>\ | |
</dependency>\ | |
<dependency>\ | |
<groupId>com.google.guava</groupId>\ | |
<artifactId>guava</artifactId>\ | |
<version>22.0</version>\ | |
<optional>true</optional>\ | |
</dependency>\ | |
<dependency>\ | |
<groupId>io.netty</groupId>\ | |
<artifactId>netty-all</artifactId>\ | |
<version>4.1.13.Final</version>\ | |
<optional>true</optional>\ | |
</dependency>\ | |
<dependency>\ | |
<groupId>org.apache.commons</groupId>\ | |
<artifactId>commons-lang3</artifactId>\ | |
<version>3.6</version>\ | |
<optional>true</optional>\ | |
</dependency>\ | |
<dependency>\ | |
<groupId>org.apache.commons</groupId>\ | |
<artifactId>commons-collections4</artifactId>\ | |
<version>4.1</version>\ | |
<optional>true</optional>\ | |
</dependency>\ | |
' $artifactId/pom.xml | |
emacs -batch $artifactId/pom.xml --eval="(indent-region (point-min) (point-max) nil)" -f save-buffer | |
rm -rf $artifactId/pom.xml~ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment