创建java-web相关文件目录及文件
pom.xml README.txt LICENSE.txt bin |- test.txt src |-main |-java |-com |-arvin |-App.java |-assembly |-assembly.xml |-config |-app-config.properties |-resources |-app-resources.properties |-filters |-app-filters.properties |-webapp |-META-INF |-WEB-INF |-web.xml |-css |-img |-test |-java |-com |-arvin |-AppTest.java |-filters |-apptest-filters.properties |-resources |-apptest-resources.properties
执行mvn archetype:create-from-project
在项目根目录下执行 mvn archetype:create-from-project
进入target生成的项目骨架目录下,执行mvn archetype:crawl
cd target/generated-sources/archetype/ mvn archetype:crawl
利用自定义的项目骨架生成项目
mvn archetype:generate -DgroupId=com.arvin.hr -DartifactId=hr -Dversion=1.0.0-SNAPSHOT -DarchetypeGroupId=com.arvin.webapps.archetype -DarchetypeArtifactId=arvin-web-archetype -DarchetypeVersion=1.0.0-SNAPSHOT -DinteractiveMode=false -X
利用Maven创建自定义项目骨架并根据生成java-web项目
原文地址:http://11046468.blog.51cto.com/11036468/1930095