修改构建错误

This commit is contained in:
YuCheng Hu 2022-06-17 14:16:51 -04:00
parent c63d207c77
commit 5523c5fe67
4 changed files with 6 additions and 6 deletions

View File

@ -48,7 +48,7 @@
<properties>
<icu4j.version>61.1</icu4j.version>
<maven.compiler.release>15</maven.compiler.release>
<maven.compiler.release>11</maven.compiler.release>
</properties>
</project>

View File

@ -48,7 +48,7 @@
<properties>
<icu4j.version>61.1</icu4j.version>
<maven.compiler.release>15</maven.compiler.release>
<maven.compiler.release>11</maven.compiler.release>
</properties>
</project>

View File

@ -6,13 +6,13 @@ import java.util.List;
import java.util.Locale;
public class App {
/**
* Runs all available formatter
* @throws ParseException
*
* @param args inputs
*/
public static void main(String[] args) {
List<Locale> locales = Arrays.asList(new Locale[] { Locale.UK, Locale.ITALY, Locale.FRANCE, Locale.forLanguageTag("pl-PL") });
List<Locale> locales = Arrays.asList(new Locale[]{Locale.UK, Locale.ITALY, Locale.FRANCE, Locale.forLanguageTag("pl-PL")});
Localization.run(locales);
JavaSEFormat.run(locales);
ICUFormat.run(locales);

View File

@ -341,7 +341,7 @@
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>3.3.2</version>
<version>3.4.0</version>
<executions>
<execution>
<id>attach-javadocs</id>