文章列表
基于Maven构建项目(已经安装了Maven)
1.进入你项目的工作空间,创建普通项目。
例如:mvn archetype:create -DgroupId=com.mm.iteye -DartifactId=iteye-product
进入iteye-product目录,把src目录删了,把pom文件中packaging改为pom
2.根据你项目模块的划分,分别创建相应的模块。
例如:mvn archetype:create -DgroupId=com.mm.iteye -DartifactId=iteye-security
mvn archetype:creat ...