Generate project structure from git template repository.
Why tgm?
Please add template.json file in your template repository, code as following:
json
{
"name": "spring-boot-java",
"repository": "https://github.com/linux-china/spring-boot-java-template",
"description": "Spring Boot App Java",
"post_create": "mvn -DskipTests compile",
"variables": [
{
"name": "groupId",
"value": "org.mvnsearch",
"description": "Maven groupId"
},
{
"name": "artifactId",
"value": "spring-boot-demo",
"description": "Maven artifactId"
}
],
"files": [
"pom.xml","src/main/resources/application.properties"
]
}
In the resource files, such as pom.xml, use template variable as following:
xml
<project>
<groupId>@groupId@</groupId>
<artifactId>@artifactId@</artifactId>
</project>
$ cargo install tgm
$ tgm add linux-china/spring-boot-java-template
$ tgm list
$ tgm create spring-boot-java spring-app-demo
$ tgm add linux-china/spring-boot-kotlin-template
$ tgm add spring-boot-java https://github.com/linux-china/spring-boot-java-template.git
$ tgm remove spring-boot-java
$ tgm create spring-boot-java spring-demo1