diff options
author | Manuel Bentele | 2021-03-26 08:43:26 +0100 |
---|---|---|
committer | Manuel Bentele | 2021-03-26 08:43:26 +0100 |
commit | d0c134f17183784b6ab2c6e83a34359dd2f17775 (patch) | |
tree | 2b293b071ec13477e3261dc02bb55f44a1887670 | |
parent | Enable Java compiler warnings (diff) | |
download | ecp-client-lean-d0c134f17183784b6ab2c6e83a34359dd2f17775.tar.gz ecp-client-lean-d0c134f17183784b6ab2c6e83a34359dd2f17775.tar.xz ecp-client-lean-d0c134f17183784b6ab2c6e83a34359dd2f17775.zip |
Fix Maven resource encoding warning
-rw-r--r-- | pom.xml | 5 |
1 files changed, 4 insertions, 1 deletions
@@ -7,6 +7,10 @@ <name>Lean ECP Client</name>
<description>ECP Client w/o OpenSAML Libs</description>
+ <properties>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+
<distributionManagement>
<repository>
<id>mltk-repo</id>
@@ -30,7 +34,6 @@ <source>1.8</source>
<target>1.8</target>
<compilerArgument>-Xlint:all</compilerArgument>
- <encoding>UTF-8</encoding>
</configuration>
</plugin>
</plugins>
|