mirror of
https://gitee.com/dcren/initializr.git
synced 2025-09-19 01:58:16 +08:00

To align with Oracle's support policy, this commit only keeps Java 8 and 10. This effectively removes 1.7 as well. Closes gh-662
14 lines
459 B
Plaintext
14 lines
459 B
Plaintext
To create a default project:
|
|
$ http {{serviceUrl}}/starter.zip -d
|
|
|
|
To create a web project using Java 10:
|
|
$ http {{serviceUrl}}/starter.zip dependencies==web \\
|
|
javaVersion==10 -d
|
|
|
|
To create a web/data-jpa gradle project unpacked:
|
|
$ http {{serviceUrl}}/starter.tgz dependencies==web,data-jpa \\
|
|
type==gradle-project baseDir==my-dir | tar -xzvf -
|
|
|
|
To generate a Maven POM with war packaging:
|
|
$ http {{serviceUrl}}/pom.xml packaging==war -o pom.xml
|