mavenでのコンパイルで以下の警告が出る。
[INFO] [resources:resources {execution: default-resources}] [WARNING] Using platform encoding (SJIS actually) to copy filtered resources, i.e. build is platform dependent!
試験管のなかのコード :: Maven Resource Plugin のワーニング
pom.xmlに以下を追加したら出なくなった。
<project> ... <build> ... <pluginManagement> <plugins> <plugin> <artifactId>maven-resources-plugin</artifactId> <configuration> <encoding>UTF-8</encoding> </configuration> </plugin> </plugins> </pluginManagement> </build> </project>