Skip to content

Commit 93bbdd0

Browse files
committed
Remove support for Eclipse CDT 10.7, since it has been archived by Eclipse.org.
1 parent f18f031 commit 93bbdd0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

lib-extra/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ p2deps {
7777
// (alphabetic order please)
7878
into 'cdtCompileOnly', {
7979
p2repo 'https://download.eclipse.org/eclipse/updates/4.26/'
80-
p2repo 'https://download.eclipse.org/tools/cdt/releases/10.7/'
80+
p2repo 'https://download.eclipse.org/tools/cdt/releases/11.0/'
8181
install 'org.eclipse.cdt.core'
8282
}
8383
into 'groovyCompileOnly', {

lib-extra/src/main/java/com/diffplug/spotless/extra/cpp/EclipseCdtFormatterStep.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/*
2-
* Copyright 2016-2024 DiffPlug
2+
* Copyright 2016-2025 DiffPlug
33
*
44
* Licensed under the Apache License, Version 2.0 (the "License");
55
* you may not use this file except in compliance with the License.
@@ -38,7 +38,7 @@ public final class EclipseCdtFormatterStep {
3838
private EclipseCdtFormatterStep() {}
3939

4040
private static final String NAME = "eclipse cdt formatter";
41-
private static final Jvm.Support<String> JVM_SUPPORT = Jvm.<String> support(NAME).add(11, "10.7").add(17, "11.6");
41+
private static final Jvm.Support<String> JVM_SUPPORT = Jvm.<String> support(NAME).add(11, "11.0").add(17, "11.6");
4242

4343
public static String defaultVersion() {
4444
return JVM_SUPPORT.getRecommendedFormatterVersion();

0 commit comments

Comments
 (0)