maven命令简介

创建普通应用项目: 
mvn archetype:create -DgroupId=com.byread -DartifactId=blog

创建WEB项目: 

mvn archetype:create -DgroupId=com.byread  -DartifactId=blogweb -DarchetypeArtifactId=maven-archetype-webapp

创建 appfuse 项目: 
mvn archetype:create -DarchetypeGroupId=org.appfuse.archetypes -DarchetypeArtifactId=appfuse-basic-struts -DremoteRepositories=http://static.appfuse.org/releases -DarchetypeVersion=2.0.2 -DgroupId=com.mycompany.app -DartifactId=myproject


---------------- ---------------- 命令说明---------------- ----------------

一。archetype( 内建插件,他的create任务将建立项目骨架 ):  archetype:create

二。groupId 项目的java包结构:com.byread

三。artifactId 项目的名称
blog

四。 archetypeArtifactId( 项目骨架的类型 ):
* maven-archetype-archetype 
* maven-archetype-j2ee-simple 
* maven-archetype-mojo 
* maven-archetype-portlet 
* maven-archetype-profiles (currently under development) 
* maven-archetype-quickstart 
* maven-archetype-simple (currently under development) 
* maven-archetype-site 
* maven-archetype-site-simple, and 
* maven-archetype-webapp

---------------- ---------------- 其他命令说明---------------- ----------------
发布到本地: 
mvn install:install -file -Dfile=D:/opensource/dbunit-2.2/dbunit-2.2.jar -DgroupId=dbunit-DartifactId=junitperf -Dversion=2.2 -Dpackaging=jar 

发布到远程: 
mvn deploy:deploy -file -DgroupId=staticComparison -DartifactId=static-comparison -Dversion=2.0 -Dpackaging=jar -Dfile=c:/staticComparison_2.0.jar -Durl=file:Y:\repo 

生成Eclipse项目结构: 
mvn eclipse:eclipse 

清理(删除target目录下编译内容) 
mvn clean 

仅有页面文件发生变化时 
mvn war:exploded 

maven定义的生命周期中主要的相位如下: 
validate : 验证项目是否正确以及相关信息是否可用。 
compile : 编译。 
test : 通过junit进行单元测试。 
package : 根据事先指定的格式(比如jar),进行打包。 
integration-test : 部署到运行环境中,准备进行集成测试。 
verify : 对包进行有效性性和质量检查。 
install : 安装到本地代码库。 
deploy : 在集成或发布环境,将包发布到远程代码库。

    mvn help:effective-pom : 你应该能看到一个大得多的pom。他暴露maven的默认设置

    你可能感兴趣的:(maven命令简介)