diff --git a/app-nb/application/pom.xml b/app-nb/application/pom.xml
index 1cab7a4a6..fc2bfe3a4 100644
--- a/app-nb/application/pom.xml
+++ b/app-nb/application/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
diff --git a/app-nb/branding/pom.xml b/app-nb/branding/pom.xml
index ae41d9a46..87c4e7a69 100644
--- a/app-nb/branding/pom.xml
+++ b/app-nb/branding/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
diff --git a/app-nb/core-nb/pom.xml b/app-nb/core-nb/pom.xml
index 7c0e6835a..3dba7149c 100644
--- a/app-nb/core-nb/pom.xml
+++ b/app-nb/core-nb/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
core-nb
diff --git a/app-nb/core-nb/src/main/java/org/mapton/core_nb/Initializer.java b/app-nb/core-nb/src/main/java/org/mapton/core_nb/Initializer.java
index a2a799b3f..8448fcf05 100644
--- a/app-nb/core-nb/src/main/java/org/mapton/core_nb/Initializer.java
+++ b/app-nb/core-nb/src/main/java/org/mapton/core_nb/Initializer.java
@@ -18,6 +18,7 @@
import java.beans.PropertyChangeEvent;
import java.util.prefs.BackingStoreException;
import java.util.prefs.Preferences;
+import javafx.application.Platform;
import javax.swing.JComponent;
import javax.swing.JFrame;
import javax.swing.JLayeredPane;
@@ -74,6 +75,8 @@ public void run() {
System.setProperty("netbeans.winsys.no_toolbars", "true");
System.setProperty("netbeans.winsys.status_line.path", "AppStatusPanel.instance");
+ Platform.setImplicitExit(false);
+
boolean fullscreen = mOptions.isFullscreen();
boolean mapOnly = mOptions.isMapOnly();
FxHelper.setDarkThemeEnabled(mOptions.is(KEY_UI_LAF_DARK));
diff --git a/app-nb/core-nb/src/main/java/org/mapton/core_nb/actions/BaseAction.java b/app-nb/core-nb/src/main/java/org/mapton/core_nb/actions/BaseAction.java
index 7404bf146..3f7ca939a 100644
--- a/app-nb/core-nb/src/main/java/org/mapton/core_nb/actions/BaseAction.java
+++ b/app-nb/core-nb/src/main/java/org/mapton/core_nb/actions/BaseAction.java
@@ -17,7 +17,6 @@
import java.awt.event.ActionListener;
import org.mapton.api.MOptions;
-import org.openide.awt.Actions;
import org.openide.windows.WindowManager;
import se.trixon.almond.nbp.Almond;
import se.trixon.almond.nbp.fx.FxTopComponent;
@@ -46,7 +45,7 @@ protected void toggleTopComponent(String id) {
if (tc.isOpened()) {
tc.requestActive();
} else {
- Actions.forID("Window", "org.mapton.core_nb.ui.MapTopComponent").actionPerformed(null);
+ Almond.openAndActivateTopComponent("MapTopComponent");
}
}
diff --git a/app-nb/core-nb/src/main/java/org/mapton/core_nb/tool/app/MapTool.java b/app-nb/core-nb/src/main/java/org/mapton/core_nb/tool/app/MapTool.java
index d451ff0d5..fd2a75a5c 100644
--- a/app-nb/core-nb/src/main/java/org/mapton/core_nb/tool/app/MapTool.java
+++ b/app-nb/core-nb/src/main/java/org/mapton/core_nb/tool/app/MapTool.java
@@ -1,42 +1,42 @@
-/*
- * Copyright 2019 Patrik Karlström.
- *
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
-package org.mapton.core_nb.tool.app;
-
-import org.controlsfx.control.action.Action;
-import org.mapton.api.MToolApp;
-import org.openide.awt.Actions;
-import org.openide.util.lookup.ServiceProvider;
-import se.trixon.almond.util.Dict;
-import se.trixon.almond.util.fx.FxActionSwing;
-import se.trixon.almond.util.icons.material.MaterialIcon;
-
-/**
- *
- * @author Patrik Karlström
- */
-@ServiceProvider(service = MToolApp.class)
-public class MapTool implements MToolApp {
-
- @Override
- public Action getAction() {
- FxActionSwing action = new FxActionSwing(Dict.MAP.toString(), () -> {
- Actions.forID("Window", "org.mapton.core_nb.ui.MapTopComponent").actionPerformed(null);
- });
- action.setGraphic(MaterialIcon._Maps.MAP.getImageView(ICON_SIZE));
-
- return action;
- }
-}
+/*
+ * Copyright 2019 Patrik Karlström.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
+package org.mapton.core_nb.tool.app;
+
+import org.controlsfx.control.action.Action;
+import org.mapton.api.MToolApp;
+import org.openide.util.lookup.ServiceProvider;
+import se.trixon.almond.nbp.Almond;
+import se.trixon.almond.util.Dict;
+import se.trixon.almond.util.fx.FxActionSwing;
+import se.trixon.almond.util.icons.material.MaterialIcon;
+
+/**
+ *
+ * @author Patrik Karlström
+ */
+@ServiceProvider(service = MToolApp.class)
+public class MapTool implements MToolApp {
+
+ @Override
+ public Action getAction() {
+ FxActionSwing action = new FxActionSwing(Dict.MAP.toString(), () -> {
+ Almond.openAndActivateTopComponent("MapTopComponent");
+ });
+ action.setGraphic(MaterialIcon._Maps.MAP.getImageView(ICON_SIZE));
+
+ return action;
+ }
+}
diff --git a/app-nb/core-nb/src/main/java/org/mapton/core_nb/ui/MapToolBar.java b/app-nb/core-nb/src/main/java/org/mapton/core_nb/ui/MapToolBar.java
index a3c72740c..22004139d 100644
--- a/app-nb/core-nb/src/main/java/org/mapton/core_nb/ui/MapToolBar.java
+++ b/app-nb/core-nb/src/main/java/org/mapton/core_nb/ui/MapToolBar.java
@@ -213,7 +213,7 @@ private void initActionsFx() {
setTooltip(mToolboxAction, new KeyCodeCombination(KeyCode.T, KeyCombination.SHORTCUT_DOWN));
//Style
- mStyleAction = new Action(String.format("%s & %s", Dict.TYPE.toString(), Dict.STYLE.toString()), event -> {
+ mStyleAction = new Action(event -> {
if (shouldOpen(mStylePopOver)) {
BorderPane pane = (BorderPane) mStylePopOver.getContentNode();
pane.setCenter(Mapton.getEngine().getStyleView());
diff --git a/app-nb/core-nb/src/main/resources/org/mapton/core_nb/about.properties b/app-nb/core-nb/src/main/resources/org/mapton/core_nb/about.properties
index 6eb1c8676..566cc3831 100644
--- a/app-nb/core-nb/src/main/resources/org/mapton/core_nb/about.properties
+++ b/app-nb/core-nb/src/main/resources/org/mapton/core_nb/about.properties
@@ -14,14 +14,14 @@
# limitations under the License.
#
app.copyright=\u00a9 2018\u20132020 Patrik Karlstr\u00f6m
-app.date=2020-04-04
+app.date=2020-04-12
app.description=Some kind of map application
app.licenseUri=https://www.apache.org/licenses/LICENSE-2.0.html
app.licenseUriTitle=Apache, Version 2.0
app.name=Mapton
app.uri=https://mapton.org
app.uriTitle=mapton.org
-app.version=2.0.0
+app.version=2.0.1
authors=Patrik Karlstr\u00f6m
libraries=Almond-NBP;Apache Commons (csv, io, lang3, logging, text);Apache NetBeans Platform 11.3;OpenHMS SqlBuilder;H2 Database Engine;NASA WorldWind;JXMapViewer2;MapJfx;j2html;jsoup;GMapsFX;Material Design Icons
-thanksTo=Magnus Myhrberg;eox.at
+thanksTo=Magnus Myhrberg;eox.at;Peter C Mehlitz
diff --git a/app-nb/modules-add-ons/geonames-ww/pom.xml b/app-nb/modules-add-ons/geonames-ww/pom.xml
index d8a8b98b9..f5d1ad8d5 100644
--- a/app-nb/modules-add-ons/geonames-ww/pom.xml
+++ b/app-nb/modules-add-ons/geonames-ww/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../../pom.xml
addon-geonames-ww
diff --git a/app-nb/modules-add-ons/geonames-ww/src/main/java/org/mapton/addon/geonames_ww/GeoNamesLayerBundle.java b/app-nb/modules-add-ons/geonames-ww/src/main/java/org/mapton/addon/geonames_ww/GeoNamesLayerBundle.java
index a177a24ed..756af724b 100644
--- a/app-nb/modules-add-ons/geonames-ww/src/main/java/org/mapton/addon/geonames_ww/GeoNamesLayerBundle.java
+++ b/app-nb/modules-add-ons/geonames-ww/src/main/java/org/mapton/addon/geonames_ww/GeoNamesLayerBundle.java
@@ -88,14 +88,19 @@ private void refresh() {
int minValue = 0;
int maxValue = 100000;
- for (Country country : countries) {
- AnalyticGrid analyticGrid = new AnalyticGrid(mLayer, altitude, minValue, maxValue);
- analyticGrid.setNullOpacity(0.0);
- analyticGrid.setZeroOpacity(0.3);
- analyticGrid.setZeroValueSearchRange(5);
- analyticGrid.setGridData(getGridData(country));
+ countries.stream()
+ .filter(country -> (country.getGeonames().size() > 1))
+ .map(country -> {
+ AnalyticGrid analyticGrid = new AnalyticGrid(mLayer, altitude, minValue, maxValue);
+ analyticGrid.setNullOpacity(0.0);
+ analyticGrid.setZeroOpacity(0.3);
+ analyticGrid.setZeroValueSearchRange(5);
+ analyticGrid.setGridData(getGridData(country));
+
+ return analyticGrid;
+ }).forEachOrdered(analyticGrid -> {
mLayer.addRenderable(analyticGrid.getSurface());
- }
+ });
LayerBundleManager.getInstance().redraw();
}
diff --git a/app-nb/modules-add-ons/photos-nb/pom.xml b/app-nb/modules-add-ons/photos-nb/pom.xml
index a4b7510c1..9e26dfd8b 100644
--- a/app-nb/modules-add-ons/photos-nb/pom.xml
+++ b/app-nb/modules-add-ons/photos-nb/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../../pom.xml
addon-photos-nb
diff --git a/app-nb/modules-add-ons/xkcd-nb/pom.xml b/app-nb/modules-add-ons/xkcd-nb/pom.xml
index 84f422605..c58668445 100644
--- a/app-nb/modules-add-ons/xkcd-nb/pom.xml
+++ b/app-nb/modules-add-ons/xkcd-nb/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../../pom.xml
addon-xkcd-nb
diff --git a/app-nb/modules/editors-nb/pom.xml b/app-nb/modules/editors-nb/pom.xml
index f3f14ee5c..5ca4bf6d8 100644
--- a/app-nb/modules/editors-nb/pom.xml
+++ b/app-nb/modules/editors-nb/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../../pom.xml
editors-nb
diff --git a/app-nb/modules/poi-nb/pom.xml b/app-nb/modules/poi-nb/pom.xml
index 8a9d62bdd..2de136f9c 100644
--- a/app-nb/modules/poi-nb/pom.xml
+++ b/app-nb/modules/poi-nb/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../../pom.xml
poi-nb
diff --git a/app-nb/modules/reports-nb/pom.xml b/app-nb/modules/reports-nb/pom.xml
index cbd226aae..3135786fc 100644
--- a/app-nb/modules/reports-nb/pom.xml
+++ b/app-nb/modules/reports-nb/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../../pom.xml
reports-nb
diff --git a/app-wb/application/pom.xml b/app-wb/application/pom.xml
index baa876c7b..d610766db 100644
--- a/app-wb/application/pom.xml
+++ b/app-wb/application/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
diff --git a/app-wb/core-wb/pom.xml b/app-wb/core-wb/pom.xml
index cfe14efbe..4fc547971 100644
--- a/app-wb/core-wb/pom.xml
+++ b/app-wb/core-wb/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
core-wb
diff --git a/app-wb/modules-add-ons/notes-wb/pom.xml b/app-wb/modules-add-ons/notes-wb/pom.xml
index d377c9aa3..e0c363bef 100644
--- a/app-wb/modules-add-ons/notes-wb/pom.xml
+++ b/app-wb/modules-add-ons/notes-wb/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../../pom.xml
addon-notes-wb
diff --git a/app-wb/modules/reports-wb/pom.xml b/app-wb/modules/reports-wb/pom.xml
index a8c1e81c3..2fb36f5f8 100644
--- a/app-wb/modules/reports-wb/pom.xml
+++ b/app-wb/modules/reports-wb/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../../pom.xml
reports-wb
diff --git a/demo/pom.xml b/demo/pom.xml
index f7d316b8d..d53010235 100644
--- a/demo/pom.xml
+++ b/demo/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../pom.xml
demo
diff --git a/modules-add-ons/notes/pom.xml b/modules-add-ons/notes/pom.xml
index cef3fcc2e..dda781a67 100644
--- a/modules-add-ons/notes/pom.xml
+++ b/modules-add-ons/notes/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
addon-notes
diff --git a/modules-add-ons/photos-ww/pom.xml b/modules-add-ons/photos-ww/pom.xml
index 399b14da1..d056098a5 100644
--- a/modules-add-ons/photos-ww/pom.xml
+++ b/modules-add-ons/photos-ww/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
addon-photos-ww
diff --git a/modules-ext/gdal/pom.xml b/modules-ext/gdal/pom.xml
index f326b9934..2ae3b550b 100644
--- a/modules-ext/gdal/pom.xml
+++ b/modules-ext/gdal/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
ext-gdal
diff --git a/modules/wikipedia/pom.xml b/modules/wikipedia/pom.xml
index c09e2acfc..5618aa842 100644
--- a/modules/wikipedia/pom.xml
+++ b/modules/wikipedia/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
wikipedia
diff --git a/modules/ww-datasources/pom.xml b/modules/ww-datasources/pom.xml
index 1071fe716..b817f247a 100644
--- a/modules/ww-datasources/pom.xml
+++ b/modules/ww-datasources/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
ww-datasources
diff --git a/pom.xml b/pom.xml
index 45c095d75..9723dca8a 100644
--- a/pom.xml
+++ b/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
pom
mapton-parent
@@ -487,7 +487,7 @@
org.postgresql
postgresql
- 42.2.11
+ 42.2.12
de.micromata.jak
@@ -512,12 +512,12 @@
com.sothawo
mapjfx
- 2.13.1
+ 2.14.0
com.github.pcmehlitz
worldwind-pcm
- 2.1.0.198
+ 2.1.0.202
org.jsoup
@@ -556,7 +556,7 @@
mapton
UTF-8
11.0.5
- 2.0.0
+ 2.0.1
14
Some kind of map application
diff --git a/shared/api/pom.xml b/shared/api/pom.xml
index e948f554f..6137434cf 100644
--- a/shared/api/pom.xml
+++ b/shared/api/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
mapton-api
diff --git a/shared/base/pom.xml b/shared/base/pom.xml
index f727c89b9..e6d328a14 100644
--- a/shared/base/pom.xml
+++ b/shared/base/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
mapton-base
diff --git a/shared/base/src/main/resources/org/mapton/base/News.properties b/shared/base/src/main/resources/org/mapton/base/News.properties
index c630c745b..dca1b176f 100644
--- a/shared/base/src/main/resources/org/mapton/base/News.properties
+++ b/shared/base/src/main/resources/org/mapton/base/News.properties
@@ -13,5 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
+2020-04-12=Release 2.0.1 - Update of JOGL (OpenGL) dependencies, and a couple of minor fixes..
2020-04-04=Release 2.0.0 - A major rewrite of the user interface.
2019-12-22=Add this news reader.
diff --git a/shared/base/src/main/resources/org/mapton/base/News_sv_SE.properties b/shared/base/src/main/resources/org/mapton/base/News_sv_SE.properties
index 8cf7f8358..d67ad194a 100644
--- a/shared/base/src/main/resources/org/mapton/base/News_sv_SE.properties
+++ b/shared/base/src/main/resources/org/mapton/base/News_sv_SE.properties
@@ -15,3 +15,4 @@
#
2020-04-04=Utg\u00e5va 2.0.0 - En \u00f6vergripande omskrivning av anv\u00e4ndargr\u00e4nssnittet.
2019-12-22=L\u00e4gg till denna nyhetsl\u00e4sare.
+2020-04-12=Utg\u00e5va 2.0.1 - Uppdatering av beroenden f\u00f6r JOGL (OpenGL), och n\u00e5gra mindre fixar.
diff --git a/shared/me-gmapsfx/pom.xml b/shared/me-gmapsfx/pom.xml
index 4801deacc..384b76a3a 100644
--- a/shared/me-gmapsfx/pom.xml
+++ b/shared/me-gmapsfx/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
me-gmapsfx
diff --git a/shared/me-jxmapviewer2/pom.xml b/shared/me-jxmapviewer2/pom.xml
index 1cb0154eb..945b56b76 100644
--- a/shared/me-jxmapviewer2/pom.xml
+++ b/shared/me-jxmapviewer2/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
me-jxmapviewer2
diff --git a/shared/me-jxmapviewer2/src/main/java/org/mapton/jxmapviewer2/MapKit.java b/shared/me-jxmapviewer2/src/main/java/org/mapton/jxmapviewer2/MapKit.java
index 0c867856e..2182b4b2a 100644
--- a/shared/me-jxmapviewer2/src/main/java/org/mapton/jxmapviewer2/MapKit.java
+++ b/shared/me-jxmapviewer2/src/main/java/org/mapton/jxmapviewer2/MapKit.java
@@ -113,8 +113,8 @@ private File getCachedFile(URI uri) {
setTileFactory(mTileFactory);
try {
- mMap.setLoadingImage(ImageIO.read(Mapton.class.getResource("mapton32.png")));
- } catch (IOException ex) {
+ mMap.setLoadingImage(ImageIO.read(MapKit.class.getResource("mapton32.png")));
+ } catch (Exception ex) {
//nvm - use default
}
diff --git a/shared/me-jxmapviewer2/src/main/resources/org/mapton/jxmapviewer2/mapton32.png b/shared/me-jxmapviewer2/src/main/resources/org/mapton/jxmapviewer2/mapton32.png
new file mode 100644
index 000000000..ac1d95e12
Binary files /dev/null and b/shared/me-jxmapviewer2/src/main/resources/org/mapton/jxmapviewer2/mapton32.png differ
diff --git a/shared/me-mapjfx/pom.xml b/shared/me-mapjfx/pom.xml
index 5ccc9163f..138abefa4 100644
--- a/shared/me-mapjfx/pom.xml
+++ b/shared/me-mapjfx/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
me-mapjfx
diff --git a/shared/me-worldwind/pom.xml b/shared/me-worldwind/pom.xml
index e013b46d2..64dcd5272 100644
--- a/shared/me-worldwind/pom.xml
+++ b/shared/me-worldwind/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
me-worldwind
diff --git a/shared/me-worldwind/src/main/java/org/mapton/worldwind/WorldWindMapEngine.java b/shared/me-worldwind/src/main/java/org/mapton/worldwind/WorldWindMapEngine.java
index 2366513ca..b64b7d345 100644
--- a/shared/me-worldwind/src/main/java/org/mapton/worldwind/WorldWindMapEngine.java
+++ b/shared/me-worldwind/src/main/java/org/mapton/worldwind/WorldWindMapEngine.java
@@ -123,7 +123,12 @@ public void fitToBounds(MLatLonBox latLonBox) {
if (!mInitialized) {
return;
}
- fitToBounds(toSector(latLonBox));
+
+ try {
+ fitToBounds(toSector(latLonBox));
+ } catch (NullPointerException e) {
+ //nvm
+ }
}
@Override
diff --git a/shared/poi-bookmarks/pom.xml b/shared/poi-bookmarks/pom.xml
index 0ea7fb863..543af670d 100644
--- a/shared/poi-bookmarks/pom.xml
+++ b/shared/poi-bookmarks/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
poi-bookmarks
diff --git a/shared/poi-ww/pom.xml b/shared/poi-ww/pom.xml
index 51afd534c..989d60b63 100644
--- a/shared/poi-ww/pom.xml
+++ b/shared/poi-ww/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
poi-ww
diff --git a/shared/se-bookmarks/pom.xml b/shared/se-bookmarks/pom.xml
index 1decc8907..853854f02 100644
--- a/shared/se-bookmarks/pom.xml
+++ b/shared/se-bookmarks/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
se-bookmarks
diff --git a/shared/se-geonames/pom.xml b/shared/se-geonames/pom.xml
index 93472b7cd..11b89a698 100644
--- a/shared/se-geonames/pom.xml
+++ b/shared/se-geonames/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
se-geonames
diff --git a/shared/se-google/pom.xml b/shared/se-google/pom.xml
index 12a190368..7f475ab9a 100644
--- a/shared/se-google/pom.xml
+++ b/shared/se-google/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
se-google
diff --git a/shared/se-nominatim/pom.xml b/shared/se-nominatim/pom.xml
index 19ec0f395..303536d19 100644
--- a/shared/se-nominatim/pom.xml
+++ b/shared/se-nominatim/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
se-nominatim
diff --git a/shared/se-poi/pom.xml b/shared/se-poi/pom.xml
index 2207b5c12..a8fadd944 100644
--- a/shared/se-poi/pom.xml
+++ b/shared/se-poi/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
se-poi
diff --git a/shared/te-swetrans/pom.xml b/shared/te-swetrans/pom.xml
index 11044b0bc..92af86650 100644
--- a/shared/te-swetrans/pom.xml
+++ b/shared/te-swetrans/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
te-swetrans
diff --git a/shared/wms-bing/pom.xml b/shared/wms-bing/pom.xml
index f38545e8e..6a2898a80 100644
--- a/shared/wms-bing/pom.xml
+++ b/shared/wms-bing/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
wms-bing
diff --git a/shared/wms-eox/pom.xml b/shared/wms-eox/pom.xml
index 2474cc24e..23daf9e4e 100644
--- a/shared/wms-eox/pom.xml
+++ b/shared/wms-eox/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
wms-eox
diff --git a/shared/wms-lantmateriet/pom.xml b/shared/wms-lantmateriet/pom.xml
index 6235688c7..2bc29b00a 100644
--- a/shared/wms-lantmateriet/pom.xml
+++ b/shared/wms-lantmateriet/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
wms-lantmateriet
diff --git a/shared/wms-nasa/pom.xml b/shared/wms-nasa/pom.xml
index b76363cbc..5d8fadbfe 100644
--- a/shared/wms-nasa/pom.xml
+++ b/shared/wms-nasa/pom.xml
@@ -4,7 +4,7 @@
org.mapton
mapton-parent
- 2.0.0
+ 2.0.1
../../pom.xml
wms-nasa