maven部署

1.在tomcat-users.xml文件的标签中添加用户角色,名称和密码




2.在maven的setting.xml文件的标签中添加


    tomcat7
    admin
   123456

3.在pom.xml配置tomcat7-maven-plugin插件



    org.apache.tomcat.maven
    tomcat7-maven-plugin
    2.2
    
        http://localhost:8080/manager/text
        tomcat7
        admin
        123456
        /qicaiyun
    

  1. 启动tomcat
  2. 部署相关命令
mvn tomcat7:deploy #部署
mvn tomcat7:undeploy #移除部署
mvn tomcat7:redeploy #重新部署

maven本地安装jar
mvn org.apache.maven.plugins:maven-install-plugin:2.5.2:install-file
-Dfile=/home/li/Documents/qicaiyun-base-1.0-20180710.075517-15.jar
-DgroupId=com.qicaiyun.ai -DartifactId=qicaiyun-base
-Dversion=1.0-SNAPSHOT -DgeneratePom=true
-DlocalRepositoryPath=/home/li/.m2/repository

maven 忽略ssl
方案一: 在命令行后面的添加

-Dmaven.wagon.http.ssl.insecure=true -Dmaven.wagon.http.ssl.allowall=true -Dmaven.wagon.http.ssl.ignore.validity.dates=true

方案二 简单粗暴好使
在setting文件中使用非https的仓库


        central-no-ssl
        Central without ssl
        http://repo.maven.apache.org/maven2
        central
    

你可能感兴趣的:(maven部署)