Skip to content

Commit 8f01109

Browse files
committed
Change properties file by use encoding UTF-8
1 parent 81e009c commit 8f01109

8 files changed

Lines changed: 20 additions & 68 deletions

File tree

core-java-modules/core-java-8-2/.gitignore

Lines changed: 0 additions & 25 deletions
This file was deleted.

core-java-modules/core-java-8-2/README.md

Lines changed: 0 additions & 7 deletions
This file was deleted.

core-java-modules/core-java-8-2/pom.xml

Lines changed: 0 additions & 28 deletions
This file was deleted.
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
label={0, date, short}, {1}{2, choice, 0# ne|0<} vous a envoyé {2, choice, 0#aucun message|1#un message|2#deux messages|2<{2,number,integer} messages}.
2-
label-icu={0} {2, plural, =0 {ne } other {}}vous a envoyé {2, plural, =0 {aucun message} =1 {un message} other {{2, number, integer} messages}}.
1+
label={0, date, short}, {1}{2, choice, 0# ne|0<} vous a envoyé {2, choice, 0#aucun message|1#un message|2#deux messages|2<{2,number,integer} messages}.
2+
label-icu={0} {2, plural, =0 {ne } other {}}vous a envoyé {2, plural, =0 {aucun message} =1 {un message} other {{2, number, integer} messages}}.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
label=W {0, date, short} {1}{2, choice, 0# nie|0<} wys\u0142a\u0142a ci {2, choice, 0#\u017Cadnych wiadomo\u015Bci|1#wiadomo\u015B\u0107|2#dwie wiadomo\u015Bci|2<{2, number, integer} wiadomo\u015Bci}.
2-
label-icu={0} {2, plural, =0 {nie } other {}}{1, select, male {wys\u0142a\u0142} female {wys\u0142a\u0142a} other {wys\u0142a\u0142o}} ci {2, plural, =0 {\u017Cadnej wiadomo\u015Bci} =1 {wiadomo\u015B\u0107} other {{2, number, integer} wiadomo\u015Bci}}.
2+
label-icu={0} {2, plural, =0 {nie } other {}}{1, select, male {wys\u0142a\u0142} female {wys\u0142a\u0142a} other {wys\u0142a\u0142o}} ci {2, plural, =0 {\u017Cadnej wiadomo\u015Bci} =1 {wiadomo\u015B\u0107} other {{2, number, integer} wiadomo\u015Bci}}.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
label=Alice vous a envoyé un message.
1+
label=Alice vous a envoyé un message.
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
label=Alice ti ha inviato un messaggio.
1+
label=Alice ti ha inviato un messaggio.

pom.xml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -118,11 +118,15 @@
118118
<moneta.version>1.3</moneta.version>
119119
<jmh-core.version>1.33</jmh-core.version>
120120
<exec-maven-plugin.version>3.0.0</exec-maven-plugin.version>
121-
<maven-surefire-plugin.version>3.0.0-M8</maven-surefire-plugin.version>
122-
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
121+
123122
<logback-classic.version>1.2.5</logback-classic.version>
124123
<rest-assured.version>3.1.1</rest-assured.version>
125124

125+
<!-- PLUGINS -->
126+
<maven-resources-plugin.version>3.3.1</maven-resources-plugin.version>
127+
<maven-surefire-plugin.version>3.0.0-M8</maven-surefire-plugin.version>
128+
<maven-compiler-plugin.version>3.10.1</maven-compiler-plugin.version>
129+
126130
</properties>
127131

128132

@@ -339,14 +343,22 @@
339343
</plugin>
340344
</plugins>
341345
</pluginManagement>
342-
343346
<plugins>
344347
<plugin>
345348
<groupId>org.apache.maven.plugins</groupId>
346349
<artifactId>maven-compiler-plugin</artifactId>
347350
<version>${maven-compiler-plugin.version}</version>
348351
<configuration>
349352
<release>${java.version}</release>
353+
<encoding>UTF-8</encoding>
354+
</configuration>
355+
</plugin>
356+
<plugin>
357+
<groupId>org.apache.maven.plugins</groupId>
358+
<artifactId>maven-resources-plugin</artifactId>
359+
<version>${maven-resources-plugin.version}</version>
360+
<configuration>
361+
<encoding>UTF-8</encoding>
350362
</configuration>
351363
</plugin>
352364
<plugin>

0 commit comments

Comments
 (0)