首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > 编程 >

创设maven项目时出现的警告

2012-09-05 
创建maven项目时出现的警告Warning: selected war files include a WEB-INF/web.xml which will be ignore

创建maven项目时出现的警告

Warning: selected war files include a WEB-INF/web.xml which will be ignored

解决方案:

   <plugins>   <plugin>   <groupId>org.apache.maven.plugins</groupId><artifactId>maven-war-plugin</artifactId><version>2.1.1</version><configuration><!-- http://maven.apache.org/plugins/maven-war-plugin/ --><packagingExcludes>WEB-INF/web.xml</packagingExcludes></configuration>   </plugin>   </plugins>

?Using platform encoding (UTF-8 actually) to copy filtered resources, i.e. build is platform dependent!

解决方案:

  <properties>   <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>   </properties> 

?

?

热点排行