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

maven打包配置

时间:2016-11-08 16:47:40      阅读:220      评论:0      收藏:0      [点我收藏+]

标签:如何   version   rect   log   uil   mpi   web.xml   name   apache   

maven打包配置,到底要打包哪些文件,如何配置??

    <build>
        <finalName>weatherAdminSys</finalName>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-war-plugin</artifactId>
                <version>2.1.1</version>
                <configuration>
                    <webXml>web\WEB-INF\web.xml</webXml>
                    <webResources>
                        <resource>  <!-- 重点看 -->
                            <directory>
                                web/
                            </directory>
                        </resource>
                    </webResources>
                </configuration>
            </plugin>
            <plugin>
                <artifactId>maven-compiler-plugin</artifactId>
                <configuration>
                    <source>1.7</source>
                    <target>1.7</target>
                    <encoding>UTF-8</encoding>
                </configuration>
            </plugin>
        </plugins>
    </build>

 

maven打包配置

标签:如何   version   rect   log   uil   mpi   web.xml   name   apache   

原文地址:http://www.cnblogs.com/tengpan-cn/p/6043187.html

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