17
Jun 2015
by
佐々木 亜里沙
mavenでビルドするときにエンコーディング問題でコンパイラが通らない場合に
<plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.7</source> <target>1.7</target> <encoding>UTF-8</encoding> </configuration> </plugin>
のようにencodingタグで文字エンコーディングを指定すると問題なくビルドできました。