maven 用法记录
maven 安装本地 jar 包
mvn install:install-file -Dfile=jar包的位置 -DgroupId=上面的groupId -DartifactId=上面的artifactId -Dversion=上面的version -Dpackaging=jar
执行此命令可将制定 jar 包添加至本地 maven 仓库
常用 maven 指令
compile
需指定相应编译插件
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>${maven-compiler-plugin-version}</version>
<configuration>
<source>${语言等级}</source>
<target>${语言等级}</target>
<encoding>${字符集}</encoding>
</configuration>
</plugin>
package
test
maven,tomcat 集成
在 pom.xml 中添加响应 plugin
<plugin>
<groupId>org.apache.tomcat.maven</groupId>
<!-- 此处需制定tomcat版本 -->
<artifactId>tomcat7-maven-plugin</artifactId>
<version>2.1</version>
<configuration>
<!-- 注意此处的url,此处用户需要在tomcat conf目录下的tomcat-users.xml中添加manager-script角色 -->
<url>http://localhost:8080/manager/text</url>
<username>${tomcat管理员}</username>
<password>${口令}</password>
<path>/${项目contextPath}</path> <!-- 此处的名字是项目发布的工程名-->
</configuration>
</plugin>
然后在项目目录下执行 mvn tomcat7:deploy
便可以自动编译打包部署运行,此处 tomcat 服务器必须在开启状态下,重新部署执行 mvn tomcat7:redeploy
。