码迷,mamicode.com
首页 > 其他好文 > 详细

maven中打包项目为war包的pom.xml配置

时间:2018-10-23 18:21:34      阅读:139      评论:0      收藏:0      [点我收藏+]

标签:4.0   str   cti   version   使用   ati   source   java   nap   

maven中打包成war包的pom.xml配置
(1)完整配置:这个是使用servlet的完整配置,其他的类似。

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
  <modelVersion>4.0.0</modelVersion>
  <groupId>com.TestMy</groupId>
  <artifactId>TestMy</artifactId>
  <version>0.0.1-SNAPSHOT</version>
  <packaging>war</packaging>
    <dependencies>
       <dependency>
    <groupId>javax.servlet</groupId>
    <artifactId>javax.servlet-api</artifactId>
    <version>3.0.1</version>
    <scope>provided</scope>
</dependency>
<dependency>
    <groupId>javax.servlet.jsp</groupId>
    <artifactId>jsp-api</artifactId>
    <version>2.2</version>
    <scope>provided</scope>
</dependency>
</dependencies>

<build>
  <plugins>
    <!-- web.xml is missing and <failOnMissingWebXml> is set to true -->
   <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-war-plugin</artifactId>
    <version>2.6</version>
    <configuration>
     <failOnMissingWebXml>false</failOnMissingWebXml>
    </configuration>
   </plugin>
   <!-- 在项目中的pom.xml指定jdk版本 -->
            <plugin>  
                <groupId>org.apache.maven.plugins</groupId>  
                <artifactId>maven-compiler-plugin</artifactId>  
                <version>3.1</version>  
                <configuration>  
                    <source>1.7</source>  
                    <target>1.7</target>  
                </configuration>  
            </plugin>    
  </plugins>
 </build>
</project>

(2)当项目中报错误:web.xml is missing and <failOnMissingWebXml> is set to true
需要在pom.xml中添加以下配置:

  <plugin>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-war-plugin</artifactId>
    <version>2.6</version>
    <configuration>
     <failOnMissingWebXml>false</failOnMissingWebXml>
    </configuration>
   </plugin>

(3)在项目中的pom.xml指定jdk版本,默认maven中的jdk版本为1.5,不满足需求,出现各种错误,需要修改其使用比较高的版本。
添加以下配置:

   <!-- 在项目中的pom.xml指定jdk版本 -->
            <plugin>  
                <groupId>org.apache.maven.plugins</groupId>  
                <artifactId>maven-compiler-plugin</artifactId>  
                <version>3.1</version>  
                <configuration>  
                    <source>1.7</source>  
                    <target>1.7</target>  
                </configuration>  
            </plugin> 

通过以上的修改,就可以解决打包项目为war包。

maven中打包项目为war包的pom.xml配置

标签:4.0   str   cti   version   使用   ati   source   java   nap   

原文地址:http://blog.51cto.com/59465168/2307833

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!