diff --git a/docs/developer-guide/mapstore-migration-guide.md b/docs/developer-guide/mapstore-migration-guide.md index 85acc49374..7fb1c5d135 100644 --- a/docs/developer-guide/mapstore-migration-guide.md +++ b/docs/developer-guide/mapstore-migration-guide.md @@ -22,6 +22,38 @@ This is a list of things to check if you want to update from a previous version ## Migration from 2023.02.xx to 2024.01.00 +### MapFish Print update + +**MapFish Print** library has been updated to be aligned to the one used by GeoServer and be able to build with Java 11. (see this issue ) +For this reason, if you are using mapfish-print, you have to update your project + +- by changing he version of the mapfish-print dependency: + +```diff + + + org.mapfish.print + print-lib +- geosolutions-2.3-SNAPSHOT ++ 2.3-SNAPSHOT + +``` + +And adding the repository where this library is hosted in the `repositories` section of the same `pom.xml` (usually in `web` folder of a project) + +```diff + + osgeo-snapshot + Open Source Geospatial Foundation Repository + https://repo.osgeo.org/repository/snapshot/ + + true + + +``` + +This library is actually hosted on [https://maven.geo-solutions.it/](https://maven.geo-solutions.it/). + ### Annotations plugin refactor The Annotation plugin has been updated to be supported also in 3D maps. This update introduced some changes: diff --git a/java/printing/pom.xml b/java/printing/pom.xml index 81ecb674e0..cf58ffc58b 100644 --- a/java/printing/pom.xml +++ b/java/printing/pom.xml @@ -17,7 +17,7 @@ org.mapfish.print print-lib - geosolutions-2.2-SNAPSHOT + 2.3-SNAPSHOT @@ -102,5 +102,14 @@ true + + + osgeo-snapshot + Open Source Geospatial Foundation Repository + https://repo.osgeo.org/repository/snapshot/ + + true + + diff --git a/product/pom.xml b/product/pom.xml index ff3911e9df..733ffc4e07 100644 --- a/product/pom.xml +++ b/product/pom.xml @@ -349,7 +349,7 @@ org.mapfish.print print-lib - geosolutions-2.3-SNAPSHOT + 2.3-SNAPSHOT commons-codec @@ -477,5 +477,14 @@ true + + + osgeo-snapshot + Open Source Geospatial Foundation Repository + https://repo.osgeo.org/repository/snapshot/ + + true + + diff --git a/project/standard/templates/web/pom.xml b/project/standard/templates/web/pom.xml index 158b117b27..8d2a8232a6 100644 --- a/project/standard/templates/web/pom.xml +++ b/project/standard/templates/web/pom.xml @@ -474,7 +474,7 @@ org.mapfish.print print-lib - geosolutions-2.3-SNAPSHOT + 2.3-SNAPSHOT commons-codec @@ -525,5 +525,14 @@ true + + + osgeo-snapshot + Open Source Geospatial Foundation Repository + https://repo.osgeo.org/repository/snapshot/ + + true + +