From 2348bfbd17701cd73d09aab44817551b49ffe035 Mon Sep 17 00:00:00 2001 From: Jeff Schnitzer Date: Mon, 31 May 2021 11:11:30 -0700 Subject: [PATCH 01/19] De-politicize Taiwan's name --- src/main/java/com/neovisionaries/i18n/CountryCode.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main/java/com/neovisionaries/i18n/CountryCode.java b/src/main/java/com/neovisionaries/i18n/CountryCode.java index a0c7fce..4563737 100644 --- a/src/main/java/com/neovisionaries/i18n/CountryCode.java +++ b/src/main/java/com/neovisionaries/i18n/CountryCode.java @@ -1951,7 +1951,7 @@ public Locale toLocale() * [TW, TWN, 158, * Officially assigned] */ - TW("Taiwan, Province of China", "TWN", 158, Assignment.OFFICIALLY_ASSIGNED) + TW("Taiwan", "TWN", 158, Assignment.OFFICIALLY_ASSIGNED) { @Override public Locale toLocale() From cd4ab593d897dc751abc4cb6068b764cebd2ee3c Mon Sep 17 00:00:00 2001 From: Jeff Schnitzer Date: Mon, 25 Oct 2021 11:52:48 -0700 Subject: [PATCH 02/19] Simplify more country names --- .../com/neovisionaries/i18n/CountryCode.java | 32 +++++++++---------- 1 file changed, 16 insertions(+), 16 deletions(-) diff --git a/src/main/java/com/neovisionaries/i18n/CountryCode.java b/src/main/java/com/neovisionaries/i18n/CountryCode.java index b6119d9..fcf2c3c 100644 --- a/src/main/java/com/neovisionaries/i18n/CountryCode.java +++ b/src/main/java/com/neovisionaries/i18n/CountryCode.java @@ -353,7 +353,7 @@ public Locale toLocale() * [BO, BOL, 68, * Officially assigned] */ - BO("Bolivia, Plurinational State of", "BOL", 68, Assignment.OFFICIALLY_ASSIGNED), + BO("Bolivia", "BOL", 68, Assignment.OFFICIALLY_ASSIGNED), /** * Bonaire, Sint Eustatius and Saba @@ -1029,7 +1029,7 @@ public Locale toLocale() * [IR, IRN, 364, * Officially assigned] */ - IR("Iran, Islamic Republic of", "IRN", 364, Assignment.OFFICIALLY_ASSIGNED), + IR("Iran", "IRN", 364, Assignment.OFFICIALLY_ASSIGNED), /** * Iceland @@ -1134,14 +1134,14 @@ public Locale toLocale() * [KP, PRK, 408, * Officially assigned] */ - KP("Korea, Democratic People's Republic of", "PRK", 408, Assignment.OFFICIALLY_ASSIGNED), + KP("North Korea", "PRK", 408, Assignment.OFFICIALLY_ASSIGNED), /** * Korea, Republic of * [KR, KOR, 410, * Officially assigned] */ - KR("Korea, Republic of", "KOR", 410, Assignment.OFFICIALLY_ASSIGNED) + KR("South Korea", "KOR", 410, Assignment.OFFICIALLY_ASSIGNED) { @Override public Locale toLocale() @@ -1267,7 +1267,7 @@ public Locale toLocale() * [MD, MDA, 498, * Officially assigned] */ - MD("Moldova, Republic of", "MDA", 498, Assignment.OFFICIALLY_ASSIGNED), + MD("Moldova", "MDA", 498, Assignment.OFFICIALLY_ASSIGNED), /** * Montenegro @@ -1281,7 +1281,7 @@ public Locale toLocale() * [MF, MAF, 663, * Officially assigned] */ - MF("Saint Martin (French part)", "MAF", 663, Assignment.OFFICIALLY_ASSIGNED), + MF("Saint Martin", "MAF", 663, Assignment.OFFICIALLY_ASSIGNED), /** * Madagascar @@ -1302,7 +1302,7 @@ public Locale toLocale() * [MK, MKD, 807, * Officially assigned] */ - MK("North Macedonia, Republic of", "MKD", 807, Assignment.OFFICIALLY_ASSIGNED), + MK("North Macedonia", "MKD", 807, Assignment.OFFICIALLY_ASSIGNED), /** * Mali @@ -1589,7 +1589,7 @@ public Locale toLocale() * [PS, PSE, 275, * Officially assigned] */ - PS("Palestine, State of", "PSE", 275, Assignment.OFFICIALLY_ASSIGNED), + PS("Palestine", "PSE", 275, Assignment.OFFICIALLY_ASSIGNED), /** * Portugal @@ -1645,7 +1645,7 @@ public Locale toLocale() * [RU, RUS, 643, * Officially assigned] */ - RU("Russian Federation", "RUS", 643, Assignment.OFFICIALLY_ASSIGNED), + RU("Russia", "RUS", 643, Assignment.OFFICIALLY_ASSIGNED), /** * Rwanda @@ -1805,14 +1805,14 @@ public Locale toLocale() * [SX, SXM, 534, * Officially assigned] */ - SX("Sint Maarten (Dutch part)", "SXM", 534, Assignment.OFFICIALLY_ASSIGNED), + SX("Sint Maarten", "SXM", 534, Assignment.OFFICIALLY_ASSIGNED), /** * Syrian Arab Republic * [SY, SYR, 760, * Officially assigned] */ - SY("Syrian Arab Republic", "SYR", 760, Assignment.OFFICIALLY_ASSIGNED), + SY("Syria", "SYR", 760, Assignment.OFFICIALLY_ASSIGNED), /** * Eswatini @@ -1947,7 +1947,7 @@ public Locale toLocale() TV("Tuvalu", "TUV", 798, Assignment.OFFICIALLY_ASSIGNED), /** - * Taiwan, Province of China + * Taiwan * [TW, TWN, 158, * Officially assigned] */ @@ -1965,7 +1965,7 @@ public Locale toLocale() * [TZ, TZA, 834, * Officially assigned] */ - TZ("Tanzania, United Republic of", "TZA", 834, Assignment.OFFICIALLY_ASSIGNED), + TZ("Tanzania", "TZA", 834, Assignment.OFFICIALLY_ASSIGNED), /** * Ukraine @@ -2041,7 +2041,7 @@ public Locale toLocale() * [VA, VAT, 336, * Officially assigned] */ - VA("Holy See (Vatican City State)", "VAT", 336, Assignment.OFFICIALLY_ASSIGNED), + VA("Vatican City", "VAT", 336, Assignment.OFFICIALLY_ASSIGNED), /** * Saint Vincent and the Grenadines @@ -2055,7 +2055,7 @@ public Locale toLocale() * [VE, VEN, 862, * Officially assigned] */ - VE("Venezuela, Bolivarian Republic of", "VEN", 862, Assignment.OFFICIALLY_ASSIGNED), + VE("Venezuela", "VEN", 862, Assignment.OFFICIALLY_ASSIGNED), /** * Virgin Islands, British @@ -2122,7 +2122,7 @@ public Locale toLocale() * [XK, XXK, -1, * User assigned] */ - XK("Kosovo, Republic of", "XKX", -1, Assignment.USER_ASSIGNED), + XK("Kosovo", "XKX", -1, Assignment.USER_ASSIGNED), /** * Yemen From 7acc3aea88ccd4a19effaa4d081addbf214cb502 Mon Sep 17 00:00:00 2001 From: Jeff Schnitzer Date: Mon, 25 Oct 2021 11:53:13 -0700 Subject: [PATCH 03/19] Update readme and prepare to publish fork --- README.md | 42 +++++++++++++++++++++++++++++++++++------- pom.xml | 18 +++++++++--------- 2 files changed, 44 insertions(+), 16 deletions(-) diff --git a/README.md b/README.md index d1143d5..0c58460 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,34 @@ -nv-i18n +nv-i18n-safe ======= +# Fork + +nv-i18n-safe is a fork of the [neovisionaries internationalization library](https://github.com/TakahikoKawasaki/nv-i18n). +The original library uses country names which are unsuitable for display in user interfaces because they are +politically inflammatory, confusing, or excessively wordy. This fork is a drop-in replacement which tracks the origin, +but renames several countries to common names used by english-language Wikipedia. There are no other code changes. + +| Old Name | New Name | +|:---------------------|:-------------------------------------------------------------| +| Taiwan, Province of China | Taiwan | +| Bolivia, Plurinational State of | Bolivia | +| Korea, Democratic People's Republic of | North Korea | +| Korea, Republic of | South Korea | +| Iran, Islamic Republic of | Iran | +| Moldova, Republic of | Moldova | +| Saint Martin (French part) | Saint Martin | +| Sint Maarten (Dutch part) | Sint Maarten | +| North Macedonia, Republic of | North Macedonia | +| Palestine, State of | Palestine | +| Russian Federation | Russia | +| Syrian Arab Republic | Syria | +| Tanzania, United Republic of | Tanzania | +| Holy See (Vatican City State) | Vatican City | +| Venezuela, Bolivarian Republic of | Venezuela | +| Kosovo, Republic of | Kosovo | + +The fork is maintained at https://github.com/stickfigure/nv-i18n-safe + Overview -------- @@ -28,8 +56,8 @@ Maven ```xml - com.neovisionaries - nv-i18n + com.voodoodyne + nv-i18n-safe 1.29 ``` @@ -40,7 +68,7 @@ Gradle ```gradle dependencies { - compile 'com.neovisionaries:nv-i18n:1.28' + compile 'com.voodoodyne:nv-i18n-safe:1.29' } ``` @@ -48,14 +76,14 @@ dependencies { OSGi ---- - Bundle-SymbolicName: com.neovisionaries.i18n - Export-Package: com.neovisionaries.i18n;version="1.28.0" + Bundle-SymbolicName: com.voodoodyne.i18n + Export-Package: com.voodoodyne.i18n;version="1.29.0" Source Code ----------- - https://github.com/TakahikoKawasaki/nv-i18n.git + https://github.com/stickfigure/nv-i18n-safe.git JavaDoc diff --git a/pom.xml b/pom.xml index d727f9a..fec1d93 100644 --- a/pom.xml +++ b/pom.xml @@ -2,13 +2,13 @@ 4.0.0 - com.neovisionaries - nv-i18n - 1.30-SNAPSHOT + com.voodoodyne + nv-i18n-safe + 1.29-SNAPSHOT bundle - Neo Visionaries Internationalization Package + Neo Visionaries Internationalization Package (safe) Package to support internationalization - https://github.com/TakahikoKawasaki/nv-i18n + https://github.com/stickfigure/nv-i18n-safe @@ -24,9 +24,9 @@ - scm:git:git@github.com:TakahikoKawasaki/nv-i18n.git - scm:git:git@github.com:TakahikoKawasaki/nv-i18n.git - git@github.com:TakahikoKawasaki/nv-i18n.git + scm:git:git@github.com:stickfigure/nv-i18n-safe.git + scm:git:git@github.com:stickfigure/nv-i18n-safe.git + git@github.com:stickfigure/nv-i18n-safe.git HEAD @@ -141,7 +141,7 @@ - Neo Visionaries Inc. + From 1c8614f7b15a43623e89392fa91a808edd315d1a Mon Sep 17 00:00:00 2001 From: Jeff Schnitzer Date: Mon, 25 Oct 2021 11:59:19 -0700 Subject: [PATCH 04/19] Build at source level 7 Modern JDKs can't compile to 1.5 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index fec1d93..678b4f0 100644 --- a/pom.xml +++ b/pom.xml @@ -97,8 +97,8 @@ maven-compiler-plugin 3.2 - 1.5 - 1.5 + 7 + 7 true From 691f80008dfafebf0a50f1dbb9c03d6ea4da067e Mon Sep 17 00:00:00 2001 From: Jeff Schnitzer Date: Mon, 25 Oct 2021 11:59:57 -0700 Subject: [PATCH 05/19] Fix test that fails due to country rename Tanzania no longer has "United" in the name --- src/test/java/com/neovisionaries/i18n/CountryCodeTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/test/java/com/neovisionaries/i18n/CountryCodeTest.java b/src/test/java/com/neovisionaries/i18n/CountryCodeTest.java index 6e3f3ae..065e517 100644 --- a/src/test/java/com/neovisionaries/i18n/CountryCodeTest.java +++ b/src/test/java/com/neovisionaries/i18n/CountryCodeTest.java @@ -35,7 +35,7 @@ public void test1() { List list = CountryCode.findByName(".*United.*"); - assertEquals(7, list.size()); + assertEquals(6, list.size()); // AE: United Arab Emirates assertTrue(list.contains(CountryCode.AE)); @@ -44,7 +44,7 @@ public void test1() assertTrue(list.contains(CountryCode.GB)); // TZ: Tanzania, United Republic of - assertTrue(list.contains(CountryCode.TZ)); + //assertTrue(list.contains(CountryCode.TZ)); // UK: United Kingdom assertTrue(list.contains(CountryCode.UK)); From c50c0bae3950cba9d5cd34105d10ad6a01619f3a Mon Sep 17 00:00:00 2001 From: Jeff Schnitzer Date: Mon, 25 Oct 2021 12:09:04 -0700 Subject: [PATCH 06/19] Need new maven javadoc plugin to compile with source 7+ --- pom.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 678b4f0..2af64fa 100644 --- a/pom.xml +++ b/pom.xml @@ -66,8 +66,9 @@ org.apache.maven.plugins maven-javadoc-plugin + 3.2.0 - -Xdoclint:-html + none @@ -79,7 +80,7 @@ org.apache.maven.plugins maven-javadoc-plugin - -Xdoclint:-html + none From 8f3756188a751c613fc68bf05403935640564df1 Mon Sep 17 00:00:00 2001 From: Jeff Schnitzer Date: Mon, 25 Oct 2021 12:15:35 -0700 Subject: [PATCH 07/19] Add java version requirement to readme --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index 0c58460..e6af995 100644 --- a/README.md +++ b/README.md @@ -27,6 +27,8 @@ but renames several countries to common names used by english-language Wikipedia | Venezuela, Bolivarian Republic of | Venezuela | | Kosovo, Republic of | Kosovo | +There is one difference in the build: nv-i18n-safe requires Java 7+ (as opposed to 1.5+) + The fork is maintained at https://github.com/stickfigure/nv-i18n-safe Overview From c6704c872d4ca99387932246c8618cc2d6f7063d Mon Sep 17 00:00:00 2001 From: Jeff Schnitzer Date: Mon, 25 Oct 2021 12:37:19 -0700 Subject: [PATCH 08/19] Use my publishing key, not theirs --- pom.xml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/pom.xml b/pom.xml index 2af64fa..6140620 100644 --- a/pom.xml +++ b/pom.xml @@ -183,9 +183,9 @@ sign - - E3F58E5C - + + + From 489cc23c98fa22608d0c3bd82d7073cb5439453a Mon Sep 17 00:00:00 2001 From: Jeff Schnitzer Date: Mon, 25 Oct 2021 12:37:37 -0700 Subject: [PATCH 09/19] [maven-release-plugin] prepare release nv-i18n-safe-1.29 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 6140620..2e02ee2 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.voodoodyne nv-i18n-safe - 1.29-SNAPSHOT + 1.29 bundle Neo Visionaries Internationalization Package (safe) Package to support internationalization @@ -27,7 +27,7 @@ scm:git:git@github.com:stickfigure/nv-i18n-safe.git scm:git:git@github.com:stickfigure/nv-i18n-safe.git git@github.com:stickfigure/nv-i18n-safe.git - HEAD + nv-i18n-safe-1.29 From 69d1a6c664fcb5e50649e00bb22efcb1aae75f14 Mon Sep 17 00:00:00 2001 From: Jeff Schnitzer Date: Mon, 25 Oct 2021 12:37:41 -0700 Subject: [PATCH 10/19] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 2e02ee2..0923c0c 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.voodoodyne nv-i18n-safe - 1.29 + 1.30-SNAPSHOT bundle Neo Visionaries Internationalization Package (safe) Package to support internationalization @@ -27,7 +27,7 @@ scm:git:git@github.com:stickfigure/nv-i18n-safe.git scm:git:git@github.com:stickfigure/nv-i18n-safe.git git@github.com:stickfigure/nv-i18n-safe.git - nv-i18n-safe-1.29 + HEAD From 710bf65449c870c07c4648875b015a96f6ece219 Mon Sep 17 00:00:00 2001 From: Jeff Schnitzer Date: Mon, 25 Oct 2021 12:43:32 -0700 Subject: [PATCH 11/19] [maven-release-plugin] rollback the release of nv-i18n-safe-1.29 --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0923c0c..6140620 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.voodoodyne nv-i18n-safe - 1.30-SNAPSHOT + 1.29-SNAPSHOT bundle Neo Visionaries Internationalization Package (safe) Package to support internationalization From 131c92b70fb44e3c51bb3bf4b3345173ebf69ab2 Mon Sep 17 00:00:00 2001 From: Jeff Schnitzer Date: Mon, 25 Oct 2021 13:02:43 -0700 Subject: [PATCH 12/19] Simplify the release config --- pom.xml | 13 ++----------- 1 file changed, 2 insertions(+), 11 deletions(-) diff --git a/pom.xml b/pom.xml index 6140620..47be119 100644 --- a/pom.xml +++ b/pom.xml @@ -163,19 +163,13 @@ org.apache.maven.plugins maven-release-plugin - 2.5.1 - - true - false - release - deploy - + 3.0.0-M4 org.apache.maven.plugins maven-gpg-plugin - 1.5 + 3.0.1 sign-artifacts @@ -183,9 +177,6 @@ sign - - - From 28360bae625a42813e0a88325b8c45efa9cf40df Mon Sep 17 00:00:00 2001 From: Jeff Schnitzer Date: Mon, 25 Oct 2021 13:03:07 -0700 Subject: [PATCH 13/19] [maven-release-plugin] prepare release nv-i18n-safe-1.29 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 47be119..0fc4f0b 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.voodoodyne nv-i18n-safe - 1.29-SNAPSHOT + 1.29 bundle Neo Visionaries Internationalization Package (safe) Package to support internationalization @@ -27,7 +27,7 @@ scm:git:git@github.com:stickfigure/nv-i18n-safe.git scm:git:git@github.com:stickfigure/nv-i18n-safe.git git@github.com:stickfigure/nv-i18n-safe.git - HEAD + nv-i18n-safe-1.29 From 279d379311e7548061c80197e9b974fbad94941b Mon Sep 17 00:00:00 2001 From: Jeff Schnitzer Date: Mon, 25 Oct 2021 13:14:35 -0700 Subject: [PATCH 14/19] [maven-release-plugin] prepare for next development iteration --- pom.xml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pom.xml b/pom.xml index 0fc4f0b..5d3e796 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.voodoodyne nv-i18n-safe - 1.29 + 1.30-SNAPSHOT bundle Neo Visionaries Internationalization Package (safe) Package to support internationalization From f3b08e5b1d3b8822c20c13d92a8318b0e6624916 Mon Sep 17 00:00:00 2001 From: Jeff Schnitzer Date: Mon, 25 Oct 2021 13:19:33 -0700 Subject: [PATCH 15/19] [maven-release-plugin] rollback the release of nv-i18n-safe-1.29 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 5d3e796..47be119 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.voodoodyne nv-i18n-safe - 1.30-SNAPSHOT + 1.29-SNAPSHOT bundle Neo Visionaries Internationalization Package (safe) Package to support internationalization @@ -27,7 +27,7 @@ scm:git:git@github.com:stickfigure/nv-i18n-safe.git scm:git:git@github.com:stickfigure/nv-i18n-safe.git git@github.com:stickfigure/nv-i18n-safe.git - nv-i18n-safe-1.29 + HEAD From b5d5f49e1aa3c095d4870f7f2a54ac9d2f0270c7 Mon Sep 17 00:00:00 2001 From: Jeff Schnitzer Date: Mon, 25 Oct 2021 13:24:10 -0700 Subject: [PATCH 16/19] Bump all build plugins to latest Giving up on minimal changes to pom. Too hard getting these old creaky plugins to work with the latest JDK. --- pom.xml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/pom.xml b/pom.xml index 47be119..3054ca1 100644 --- a/pom.xml +++ b/pom.xml @@ -96,7 +96,7 @@ org.apache.maven.plugins maven-compiler-plugin - 3.2 + 3.8.1 7 7 @@ -107,7 +107,7 @@ org.apache.maven.plugins maven-source-plugin - 2.3 + 3.2.1 attach-sources @@ -121,7 +121,7 @@ org.apache.maven.plugins maven-javadoc-plugin - 2.10.1 + 3.2.0 -J-Duser.language=en @@ -138,7 +138,7 @@ org.apache.maven.plugins maven-jar-plugin - 2.5 + 3.2.0 @@ -151,7 +151,7 @@ org.sonatype.plugins nexus-staging-maven-plugin - 1.6.4 + 1.6.8 true darutk From a50c079a62483c5cbff8cc1def64c42c155a53c5 Mon Sep 17 00:00:00 2001 From: Jeff Schnitzer Date: Mon, 25 Oct 2021 13:24:30 -0700 Subject: [PATCH 17/19] [maven-release-plugin] prepare release nv-i18n-safe-1.29 --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index 3054ca1..a85320a 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.voodoodyne nv-i18n-safe - 1.29-SNAPSHOT + 1.29 bundle Neo Visionaries Internationalization Package (safe) Package to support internationalization @@ -27,7 +27,7 @@ scm:git:git@github.com:stickfigure/nv-i18n-safe.git scm:git:git@github.com:stickfigure/nv-i18n-safe.git git@github.com:stickfigure/nv-i18n-safe.git - HEAD + nv-i18n-safe-1.29 From 1a9c8f619ca7c57d8f48bc1f37ec8393b78ee29c Mon Sep 17 00:00:00 2001 From: Jeff Schnitzer Date: Mon, 25 Oct 2021 13:24:35 -0700 Subject: [PATCH 18/19] [maven-release-plugin] prepare for next development iteration --- pom.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pom.xml b/pom.xml index a85320a..fe910b2 100644 --- a/pom.xml +++ b/pom.xml @@ -4,7 +4,7 @@ com.voodoodyne nv-i18n-safe - 1.29 + 1.30-SNAPSHOT bundle Neo Visionaries Internationalization Package (safe) Package to support internationalization @@ -27,7 +27,7 @@ scm:git:git@github.com:stickfigure/nv-i18n-safe.git scm:git:git@github.com:stickfigure/nv-i18n-safe.git git@github.com:stickfigure/nv-i18n-safe.git - nv-i18n-safe-1.29 + HEAD From 9d0f9fadf4266116f801321ec7d23f2c626029c2 Mon Sep 17 00:00:00 2001 From: Jeff Schnitzer Date: Mon, 25 Oct 2021 13:32:45 -0700 Subject: [PATCH 19/19] Record the annoying hack necessary to publish to maven central --- pom.xml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pom.xml b/pom.xml index fe910b2..b9ce0d4 100644 --- a/pom.xml +++ b/pom.xml @@ -148,6 +148,11 @@ + + org.sonatype.plugins nexus-staging-maven-plugin