一、构建项目
mvn archetype:create -DgroupId=com.maven.test -DartifactId=helloMaven -DpackageName=com.maven.test -DarchetypeArtifactId=maven-archetype-webapp -Dversion=1.0groupId //项目包名artifactId //项目名称archetype //是一个内建插件,他的create任务将建立项目骨架archetypeArtifactId //项目骨架的类型创建Maven项目:mvn archetype:create编译源代码:mvn compile编译测试代码:mvn test-compile运行测试:mvn test产生site:mvn site打包:mvn package在本地Repository中安装jar:mvn install清除产生的项目:mvn clean二、编译项目-生成eclipse的项目结构编译项目代码//建成我们eclipse可以导入的项目mvn clean compileClean 告诉maven清理输入出目录target/,compile告诉maven编译项目主代码mvn eclipse:eclipse参考信息:http://www.cnblogs.com/fnng/archive/2011/12/02/2272610.html三、导入Eclipse配置maven仓库路径Window----Perferences-----java-----Build Path-----Classpath Variables四、包的更新与下载打开项目发现我们junit 是3.8.1的,有点老了。那我想换成4.7的,如何通过maven的方式更换呢。其实,很简单,打开我们项目下的的pom.xml文件。……<dependencies> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.8.1</version> <scope>test</scope> </dependency> </dependencies>……更改变,junit的版本号,然后重新执行:mvn eclipse:eclipse