mavenで、[WARNING] Using platform encoding (SJIS actually) to copy filtered resources, i.e. build is platform dependent!

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>

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です

このサイトはスパムを低減するために Akismet を使っています。コメントデータの処理方法の詳細はこちらをご覧ください