From f7b6029e5a5f82cebeb39537429ff3e51e4ce0f0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=90=D0=BB=D0=B5=D0=BA=D1=81=D0=B0=D0=BD=D0=B4=D1=8A?= =?UTF-8?q?=D1=80=20=D0=9A=D1=83=D1=80=D1=82=D0=B0=D0=BA=D0=BE=D0=B2?= Date: Sat, 23 Sep 2023 10:21:37 +0300 Subject: [PATCH] Use 2023-09 simrel As default repo in plugins that have such and in tests. --- .../main/java/org/eclipse/tycho/apitools/ApiAnalysisMojo.java | 2 +- .../eclipse/tycho/extras/docbundle/DocApplicationManager.java | 2 +- tycho-its/projects/api-tools/pom.xml | 2 +- .../projects/document-bundle-plugin/build-help-index/pom.xml | 2 +- .../main/java/org/eclipse/tycho/test/util/EnvironmentUtil.java | 2 +- 5 files changed, 5 insertions(+), 5 deletions(-) diff --git a/tycho-apitools-plugin/src/main/java/org/eclipse/tycho/apitools/ApiAnalysisMojo.java b/tycho-apitools-plugin/src/main/java/org/eclipse/tycho/apitools/ApiAnalysisMojo.java index e172c9e81a..97fe9b4a95 100644 --- a/tycho-apitools-plugin/src/main/java/org/eclipse/tycho/apitools/ApiAnalysisMojo.java +++ b/tycho-apitools-plugin/src/main/java/org/eclipse/tycho/apitools/ApiAnalysisMojo.java @@ -77,7 +77,7 @@ public class ApiAnalysisMojo extends AbstractMojo { static final String BUNDLE_CORE = "org.eclipse.core.runtime"; - private static final String REPO_DEFAULT = "https://download.eclipse.org/releases/2023-06/"; + private static final String REPO_DEFAULT = "https://download.eclipse.org/releases/2023-09/"; @Parameter(property = "plugin.artifacts") protected List pluginArtifacts; diff --git a/tycho-extras/tycho-document-bundle-plugin/src/main/java/org/eclipse/tycho/extras/docbundle/DocApplicationManager.java b/tycho-extras/tycho-document-bundle-plugin/src/main/java/org/eclipse/tycho/extras/docbundle/DocApplicationManager.java index c9b77bddd2..19ed66ad75 100644 --- a/tycho-extras/tycho-document-bundle-plugin/src/main/java/org/eclipse/tycho/extras/docbundle/DocApplicationManager.java +++ b/tycho-extras/tycho-document-bundle-plugin/src/main/java/org/eclipse/tycho/extras/docbundle/DocApplicationManager.java @@ -25,7 +25,7 @@ @Component(role = DocApplicationManager.class) public class DocApplicationManager { - private static final String REPO_DEFAULT = "https://download.eclipse.org/releases/2023-03/"; + private static final String REPO_DEFAULT = "https://download.eclipse.org/releases/2023-09/"; static MavenRepositoryLocation getRepository(Repository location) { if (location == null) { diff --git a/tycho-its/projects/api-tools/pom.xml b/tycho-its/projects/api-tools/pom.xml index 71c9c3b6f1..f1230b7f92 100644 --- a/tycho-its/projects/api-tools/pom.xml +++ b/tycho-its/projects/api-tools/pom.xml @@ -12,7 +12,7 @@ bundle2 - https://download.eclipse.org/releases/2023-06/ + https://download.eclipse.org/releases/2023-09/ diff --git a/tycho-its/projects/document-bundle-plugin/build-help-index/pom.xml b/tycho-its/projects/document-bundle-plugin/build-help-index/pom.xml index 6723c553fc..202f5c4f85 100644 --- a/tycho-its/projects/document-bundle-plugin/build-help-index/pom.xml +++ b/tycho-its/projects/document-bundle-plugin/build-help-index/pom.xml @@ -6,7 +6,7 @@ 1.0.0-SNAPSHOT eclipse-plugin - https://download.eclipse.org/releases/2023-03/ + https://download.eclipse.org/releases/2023-09/ 4.0.0-SNAPSHOT diff --git a/tycho-testing-harness/src/main/java/org/eclipse/tycho/test/util/EnvironmentUtil.java b/tycho-testing-harness/src/main/java/org/eclipse/tycho/test/util/EnvironmentUtil.java index cdd7d7bc6c..68fbb9fe16 100644 --- a/tycho-testing-harness/src/main/java/org/eclipse/tycho/test/util/EnvironmentUtil.java +++ b/tycho-testing-harness/src/main/java/org/eclipse/tycho/test/util/EnvironmentUtil.java @@ -36,7 +36,7 @@ public class EnvironmentUtil { private static final String MAVEN_HOME_INFO = "Maven home:"; - public static final String ECLIPSE_LATEST = "https:////download.eclipse.org/releases/2022-12/"; + public static final String ECLIPSE_LATEST = "https:////download.eclipse.org/releases/2023-09/"; private static final Properties props;