sample 样例
[root@localhost ~]# mvn archetype:generate -DgroupId=cn.kgc.kgcapp -DartifactId=kgcapp -DarchetypeArtifactId=maven-archetype-quickstart -DinteractiveMode=flase
配置阿里云镜像
158 -->
159 <mirror>
160 <id>aliyun maven</id>
161 <name>aliyun</name>
162 <url>http://maven.aliyun.com/nexus/content/groups/public/</url>
163 <mirrorOf>central</mirrorOf>
164 </mirror>
165 </mirrors>
maven的常用指令
前提:执行maven命令 必须先进入项目根目录
1.mvn compile 编译 将源代码编译
mvn archetype:generate
1.mvn compile
archetype compile 插件
2.mvn test 测试 将测试代码进行编译
3.mvn package 打包 java项目jar web项目war包
4.mvn install 官方:安装 通俗:上传
效果:将打成的包传到本地仓库
5.mvn deploy 部署 (将项目打成的包上传到私服)
6.mvn clean 清理 将编译输出的东西全部清理掉
效果 rm -rf target/
组合命令:
mvn clean package 先清理后打包
mvn clean install
mvn clean deploy
[root@localhost ~]# mvn archetype:generate -DgroupId=cn.kgc.kgcweb -DartifactId=kgcweb -DarchetypeArtifactId=maven-archetype-webapp -DinteractiveMode=false