Maven打包字符编码

使用mvn package -Dmaven.test.skip=ture,是由于文件内容使用的utf8方式,而mav打包编码为gbk,因此需要设置mvn编码。在pom.xmlbuild节点中增加如下红色内容就好

<build>

  <plugins>

   <plugin>

    <groupId>org.apache.maven.plugins</groupId>

    <artifactId>maven-compiler-plugin</artifactId>

    <version>2.3.1</version>

    <configuration>

     <source>1.7</source>

     <target>1.7</target>

     <encoding>utf8</encoding>

    </configuration>

   </plugin>

  </plugins>

 </build>

你可能感兴趣的:(maven)