1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34
|
From: Mechtilde <mechtilde@debian.org>
Date: Sun, 30 Mar 2025 14:23:55 +0200
Subject: 13_Set file encoding in pom.xml
Forwarded: No
Last-Update: 2019-10-02
---
pom.xml | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/pom.xml b/pom.xml
index e72bca7..302de59 100644
--- a/pom.xml
+++ b/pom.xml
@@ -45,12 +45,13 @@
<developerConnection>scm:git:https://github.com/mangstadt/ez-vcard.git</developerConnection>
<url>https://github.com/mangstadt/ez-vcard/commits/master</url>
</scm>
-
- <properties>
- <java.version>1.8</java.version>
- </properties>
-
- <dependencies>
+
+ <properties>
+ <java.version>1.8</java.version>
+ <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
+ </properties>
+
+ <dependencies>
<!--
Selected portions of this library's source code have been incorporated into the ez-vcard code base to improve Android compatibility.
See: https://groups.google.com/forum/?fromgroups=#!topic/ez-vcard-discuss/w2TK7yetwr8
|