maven项目打包部署
为了方便项目的动态打包部署,只需在POM.XML中加入相应的插件就OK,插件引入如下:
</properties>
<finalName>ROOT</finalName>
<tomcat.home>D:\apache-tomcat-6.0.41</tomcat.home>
<deploy.dir>${tomcat.home}\webapps</deploy.dir>
</properties>
<build>
<finalName>${finalName}</finalName>
<plugins>
<plugin>
<artifactId>maven-antrun-plugin</artifactId>
<version>1.7</version>
<executions>
<execution>
<phase>install</phase>
<configuration>
<target>
<delete>
<fileset dir="${deploy.dir}" includes="${finalName}.war" />
</delete>
<copy todir="${deploy.dir}">
<fileset dir="./target" includes="${finalName}.war" />
</copy>
</target>
</configuration>
<goals>
<goal>run</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
附赠两条跳过测试的打包命令:
mvn install -DskipTests
mvn install -Dmaven.test.skip=true
maven本地包打入本地仓库:
mvn install:install-file -Dfile=C:/141105LL-cryptix-jce-provider.jar(包路径) -DgroupId=com.ll(groupId值) -DartifactId=cryptix(artifactId值) -Dversion=1.0(version值) -Dpackaging=jar -DgeneratePom=true -DcreateChecksum=true
上一篇: PHP程序加速探索之加速工具软件
下一篇: Py2exe 打包后图标不显示
推荐阅读
-
laravel项目利用twemproxy部署redis集群的完整步骤
-
Linux部署Java-Web,mvn package出现COMPILATION ERROR :Failed to execute goal org.apache.maven.plugins:mave
-
thinkphp3.1版项目部署到linux后找不到上传类
-
项目部署到tomcat服务器,在tomcat目录下找不到的问题
-
[转载] 解决eclipse中web项目部署至Tomcat在Tomcat安装目录下找不到项目问题
-
vue项目环境部署,在指定目录下搭建vue项目
-
eclipse中部署在tomcat上的项目能正常运行,但无法访问tomcat默认首页
-
eclipse-maven项目使用maven的tomcat插件启动
-
使用Maven构建web项目时的基本过程
-
Asp.Net MVC3.0如何项目部署到Win7 64位系统