From a18f00beaaec872f6eb3381925548c5f663b4e12 Mon Sep 17 00:00:00 2001 From: Taylor Smock Date: Mon, 21 Sep 2020 08:22:56 -0600 Subject: [PATCH] JOSM SVN: Update urls * https://svn.openstreetmap.org/applications/editors/josm/dist/ to https://josm.openstreetmap.de/export/latest/osm/applications/editors/josm/dist For more information, see JOSM-19509 ( https://josm.openstreetmap.de/ticket/19509 ). Signed-off-by: Taylor Smock --- src/main/kotlin/config/JosmPluginExtension.kt | 2 +- src/main/kotlin/util/Urls.kt | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main/kotlin/config/JosmPluginExtension.kt b/src/main/kotlin/config/JosmPluginExtension.kt index 0b1443d9..4135dcb5 100644 --- a/src/main/kotlin/config/JosmPluginExtension.kt +++ b/src/main/kotlin/config/JosmPluginExtension.kt @@ -207,7 +207,7 @@ open class JosmPluginExtension(val project: Project) { * 1. Nexus repo for JOSM releases: [https://josm.openstreetmap.de/nexus/content/repositories/releases/](https://josm.openstreetmap.de/nexus/content/repositories/releases/) (as [MavenArtifactRepository]) * 2. Download page for JOSM releases and snapshots: [https://josm.openstreetmap.de/download/](https://josm.openstreetmap.de/download/) (as custom [IvyArtifactRepository], the `Archiv` subdirectory is also included) * 3. Nexus repo for JOSM snapshots: [https://josm.openstreetmap.de/nexus/content/repositories/snapshots/](https://josm.openstreetmap.de/nexus/content/repositories/snapshots/) (as [MavenArtifactRepository]) - * 4. Directory in SVN repo where JOSM plugins are published: [https://svn.openstreetmap.org/applications/editors/josm/dist/](https://svn.openstreetmap.org/applications/editors/josm/dist/) (as custom [IvyArtifactRepository]) + * 4. Directory in SVN repo where JOSM plugins are published: [https://josm.openstreetmap.de/export/latest/osm/applications/editors/josm/dist](https://josm.openstreetmap.de/export/latest/osm/applications/editors/josm/dist) (as custom [IvyArtifactRepository]) * 5. GitLab Maven repository containing some plugins that are neither in SVN nor in the Nexus repository: [https://gitlab.com/api/v4/groups/JOSM/-/packages/maven](https://gitlab.com/api/v4/groups/JOSM/-/packages/maven) (as [MavenArtifactRepository]) * * @see RepositoryHandler diff --git a/src/main/kotlin/util/Urls.kt b/src/main/kotlin/util/Urls.kt index 04176f0f..ba454a3e 100644 --- a/src/main/kotlin/util/Urls.kt +++ b/src/main/kotlin/util/Urls.kt @@ -67,5 +67,5 @@ object Urls { /** * The directory in the JOSM SVN where the latest releases of JOSM plugins are stored */ - val JOSM_PLUGIN_DIST = URL("https://svn.openstreetmap.org/applications/editors/josm/dist") + val JOSM_PLUGIN_DIST = URL("https://josm.openstreetmap.de/export/latest/osm/applications/editors/josm/dist") }