File tree 5 files changed +11
-3
lines changed
lib-extra/src/main/java/com/diffplug/spotless/extra
5 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -15,6 +15,8 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
15
15
### Changed
16
16
* Use palantir-java-format 2.57.0 on Java 21. ([ #2447 ] ( https://github.com/diffplug/spotless/pull/2447 ) )
17
17
* Re-try ` npm install ` with ` --prefer-online ` after ` ERESOLVE ` error. ([ #2448 ] ( https://github.com/diffplug/spotless/pull/2448 ) )
18
+ * Bump default ` eclipse ` version to latest ` 4.34 ` -> ` 4.35 ` . ([ #2458 ] ( https://github.com/diffplug/spotless/pull/2458 ) )
19
+ * Bump default ` greclipse ` version to latest ` 4.32 ` -> ` 4.35 ` . ([ #2458 ] ( https://github.com/diffplug/spotless/pull/2458 ) )
18
20
19
21
## [ 3.1.0] - 2025-02-20
20
22
### Added
Original file line number Diff line number Diff line change 1
1
/*
2
- * Copyright 2016-2024 DiffPlug
2
+ * Copyright 2016-2025 DiffPlug
3
3
*
4
4
* Licensed under the Apache License, Version 2.0 (the "License");
5
5
* you may not use this file except in compliance with the License.
@@ -33,7 +33,7 @@ public final class GrEclipseFormatterStep {
33
33
private GrEclipseFormatterStep () {}
34
34
35
35
private static final String NAME = "eclipse groovy formatter" ;
36
- private static final Jvm .Support <String > JVM_SUPPORT = Jvm .<String > support (NAME ).add (11 , "4.26" ).add (17 , "4.32 " );
36
+ private static final Jvm .Support <String > JVM_SUPPORT = Jvm .<String > support (NAME ).add (11 , "4.26" ).add (17 , "4.35 " );
37
37
38
38
public static String defaultVersion () {
39
39
return JVM_SUPPORT .getRecommendedFormatterVersion ();
@@ -69,6 +69,8 @@ protected P2Model model(String version) {
69
69
model .addFilterAndValidate ("no-debug" , filter -> {
70
70
filter .exclude ("org.eclipse.jdt.debug" );
71
71
});
72
+ // work around https://github.com/groovy/groovy-eclipse/issues/1617
73
+ model .useMavenCentral = false ;
72
74
return model ;
73
75
}
74
76
Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ public final class EclipseJdtFormatterStep {
34
34
private EclipseJdtFormatterStep () {}
35
35
36
36
private static final String NAME = "eclipse jdt formatter" ;
37
- private static final Jvm .Support <String > JVM_SUPPORT = Jvm .<String > support (NAME ).add (11 , "4.26" ).add (17 , "4.34 " );
37
+ private static final Jvm .Support <String > JVM_SUPPORT = Jvm .<String > support (NAME ).add (11 , "4.26" ).add (17 , "4.35 " );
38
38
39
39
public static String defaultVersion () {
40
40
return JVM_SUPPORT .getRecommendedFormatterVersion ();
Original file line number Diff line number Diff line change @@ -9,6 +9,8 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
9
9
* Use palantir-java-format 2.57.0 on Java 21. ([ #2447 ] ( https://github.com/diffplug/spotless/pull/2447 ) )
10
10
* Re-try ` npm install ` with ` --prefer-online ` after ` ERESOLVE ` error. ([ #2448 ] ( https://github.com/diffplug/spotless/pull/2448 ) )
11
11
* Apply Gradle's strict plugin types validation to the Spotless plugin. ([ #2454 ] ( https://github.com/diffplug/spotless/pull/2454 ) )
12
+ * Bump default ` eclipse ` version to latest ` 4.34 ` -> ` 4.35 ` . ([ #2458 ] ( https://github.com/diffplug/spotless/pull/2458 ) )
13
+ * Bump default ` greclipse ` version to latest ` 4.32 ` -> ` 4.35 ` . ([ #2458 ] ( https://github.com/diffplug/spotless/pull/2458 ) )
12
14
13
15
## [ 7.0.2] - 2025-01-14
14
16
### Fixed
Original file line number Diff line number Diff line change @@ -8,6 +8,8 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
8
8
### Changed
9
9
* Use palantir-java-format 2.57.0 on Java 21. ([ #2447 ] ( https://github.com/diffplug/spotless/pull/2447 ) )
10
10
* Re-try ` npm install ` with ` --prefer-online ` after ` ERESOLVE ` error. ([ #2448 ] ( https://github.com/diffplug/spotless/pull/2448 ) )
11
+ * Bump default ` eclipse ` version to latest ` 4.34 ` -> ` 4.35 ` . ([ #2458 ] ( https://github.com/diffplug/spotless/pull/2458 ) )
12
+ * Bump default ` greclipse ` version to latest ` 4.32 ` -> ` 4.35 ` . ([ #2458 ] ( https://github.com/diffplug/spotless/pull/2458 ) )
11
13
12
14
## [ 2.44.3] - 2025-02-20
13
15
* Support for ` clang-format ` ([ #2406 ] ( https://github.com/diffplug/spotless/pull/2406 ) )
You can’t perform that action at this time.
0 commit comments