使用Maven Archetype插件构建Maven工程原型模板的实例

2025-05-29 0 100

创建原型模板

1、在空目录运行archetype:generate上面的命令,待下载完必要的jar包后,首先需要输入内置的原型编号;

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15
Choose archetype:

1: internal -> org.apache.maven.archetypes:maven-archetype-archetype (An archetype which contains a sample archetype.)

2: internal -> org.apache.maven.archetypes:maven-archetype-j2ee-simple (An archetype which contains a simplifed sample J2EE application.)

3: internal -> org.apache.maven.archetypes:maven-archetype-plugin (An archetype which contains a sample Maven plugin.)

4: internal -> org.apache.maven.archetypes:maven-archetype-plugin-site (An archetype which contains a sample Maven plugin site.

This archetype can be layered upon an existing Maven plugin project.)

5: internal -> org.apache.maven.archetypes:maven-archetype-portlet (An archetype which contains a sample JSR-268 Portlet.)

6: internal -> org.apache.maven.archetypes:maven-archetype-profiles ()

7: internal -> org.apache.maven.archetypes:maven-archetype-quickstart (An archetype which contains a sample Maven project.)

8: internal -> org.apache.maven.archetypes:maven-archetype-site (An archetype which contains a sample Maven site which demonstrates

some of the supported document types like APT, XDoc, and FML and demonstrates how

to i18n your site. This archetype can be layered upon an existing Maven project.)

9: internal -> org.apache.maven.archetypes:maven-archetype-site-simple (An archetype which contains a sample Maven site.)

10: internal -> org.apache.maven.archetypes:maven-archetype-webapp (An archetype which contains a sample Maven Webapp project.)

Choose a number or apply filter (format: [groupId:]artifactId, case sensitive contains): 7:

2、输入任意编号后,继续下载必要jar包,之后要求分别输入groupId,artifactId,version,package,并确认

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

23

24
Define value for property 'groupId': com.aaa

Define value for property 'artifactId': bbb

Define value for property 'version' 1.0-SNAPSHOT: : 1.0

Define value for property 'package' com.aaa: : project

Y: :

[INFO] ----------------------------------------------------------------------------

[INFO] Using following parameters for creating project from Old (1.x) Archetype: maven-archetype-archetype:1.0

[INFO] ----------------------------------------------------------------------------

[INFO] Parameter: basedir, Value: E:\\CODE\\test

[INFO] Parameter: package, Value: project

[INFO] Parameter: groupId, Value: com.aaa

[INFO] Parameter: artifactId, Value: bbb

[INFO] Parameter: packageName, Value: project

[INFO] Parameter: version, Value: 1.0

[INFO] project created from Old (1.x) Archetype in dir: E:\\CODE\\test\\bbb

[INFO] ------------------------------------------------------------------------

[INFO] BUILD SUCCESS

[INFO] ------------------------------------------------------------------------

[INFO] Total time: 11:12 min

[INFO] Finished at: 2017-12-02T22:00:49+08:00

[INFO] Final Memory: 17M/58M

[INFO] ------------------------------------------------------------------------

3、浏览Maven工程

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14
|-- pom.xml

`-- src

|-- main

| `-- java

| `-- com

| `-- aaa

| `-- bbb

| `-- App.java

`-- test

`-- java

`-- com

`-- aaa

`-- bbb

`-- AppTest.java

4、内置原型过多时,可以使用-Dfilter命令过滤

?

1
mvn archetype:generate -Dfilter=j2ee

5、在Maven工程的pom.xml目录运行mvn archetype:create-from-project, 将会在target/generated-sources/archetype目录下生成原型工程目录

6、在原型工程pom.xml文件下,执行mvn install来把原型jar包上传到本地仓库

7、这时的原型就可以使用了,在空目录执行mvn archetype:generate -DarchetypeCatalog=local

?

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18
mvn archetype:generate -DarchetypeCatalog=local

[INFO] Scanning for projects...

[INFO]

[INFO] ------------------------------------------------------------------------

[INFO] Building Maven Stub Project (No POM) 1

[INFO] ------------------------------------------------------------------------

[INFO]

[INFO] >>> maven-archetype-plugin:3.0.1:generate (default-cli) > generate-sources @ standalone-pom >>>

[INFO]

[INFO] <<< maven-archetype-plugin:3.0.1:generate (default-cli) < generate-sources @ standalone-pom <<<

[INFO]

[INFO]

[INFO] --- maven-archetype-plugin:3.0.1:generate (default-cli) @ standalone-pom ---

[INFO] Generating project in Interactive mode

[INFO] No archetype defined. Using maven-archetype-quickstart (org.apache.maven.archetypes:maven-archetype-quickstart:1.0)

Choose archetype:

1: local -> com.aaa:bbb-archetype (bbb-archetype)

Choose a number or apply filter (format: [groupId:]artifactId, case sensitive contains): :

接下来就和第一步一样的流程了。

以上这篇使用Maven Archetype插件构建Maven工程原型模板的实例就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持快网idc。

原文链接:http://www.cnblogs.com/bigshark/p/7955980.html

收藏 (0) 打赏

感谢您的支持,我会继续努力的!

打开微信/支付宝扫一扫,即可进行扫码打赏哦,分享从这里开始,精彩与您同在
点赞 (0)

声明:本站所有文章,如无特殊说明或标注,均为本站原创发布。任何个人或组织,在未征得本站同意时,禁止复制、盗用、采集、发布本站内容到任何网站、书籍等各类媒体平台。如若本站内容侵犯了原著者的合法权益,可联系我们进行处理。

快网idc优惠网 建站教程 使用Maven Archetype插件构建Maven工程原型模板的实例 https://www.kuaiidc.com/113761.html

相关文章

发表评论
暂无评论