Skip to content

Commit b8b4efc

Browse files
authored
Fix eclipse-based parallel downloads (#2396 fixes #2389)
2 parents b50fcaf + b401228 commit b8b4efc

File tree

8 files changed

+11
-8
lines changed

8 files changed

+11
-8
lines changed

CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -12,6 +12,7 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
1212
## [Unreleased]
1313
### Fixed
1414
* Node.JS-based tasks now work with the configuration cache ([#2372](https://github.com/diffplug/spotless/issues/2372))
15+
* Eclipse-based tasks can now handle parallel configuration ([#2389](https://github.com/diffplug/spotless/issues/2389))
1516

1617
## [3.0.1] - 2025-01-07
1718
### Fixed

build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ spotless {
2222
}
2323
format 'dotfiles', {
2424
target '.gitignore', '.gitattributes', '.editorconfig'
25-
indentWithSpaces(2)
25+
leadingTabsToSpaces(2)
2626
trimTrailingWhitespace()
2727
endWithNewline()
2828
}

gradle/spotless-freshmark.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Action<FreshMarkExtension> freshmarkSetup = {
1010
it.put('yes', ':+1:')
1111
it.put('no', ':white_large_square:')
1212
}
13-
it.indentWithSpaces(2)
13+
it.leadingTabsToSpaces(2)
1414
it.endWithNewline()
1515
}
1616

lib-extra/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ version = rootProject.spotlessChangelog.versionNext
77
apply from: rootProject.file('gradle/java-setup.gradle')
88
apply from: rootProject.file('gradle/java-publish.gradle')
99

10-
String VER_SOLSTICE = '1.8.0'
10+
String VER_SOLSTICE = '1.8.1'
1111
dependencies {
1212
api projects.lib
1313
// misc useful utilities

lib-extra/src/main/java/com/diffplug/spotless/extra/EquoBasedStepBuilder.java

+3-3
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.
@@ -131,8 +131,8 @@ public FormatterStep build() {
131131
}
132132
var classpath = new ArrayList<File>();
133133
var mavenDeps = new ArrayList<String>();
134-
mavenDeps.add("dev.equo.ide:solstice:1.8.0");
135-
mavenDeps.add("com.diffplug.durian:durian-swt.os:4.2.0");
134+
mavenDeps.add("dev.equo.ide:solstice:1.8.1");
135+
mavenDeps.add("com.diffplug.durian:durian-swt.os:4.3.1");
136136
mavenDeps.addAll(query.getJarsOnMavenCentral());
137137
classpath.addAll(mavenProvisioner.provisionWithTransitives(false, mavenDeps));
138138
classpath.addAll(query.getJarsNotOnMavenCentral());

plugin-gradle/CHANGES.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (
44

55
## [Unreleased]
66
### Fixed
7-
* Node.JS-based tasks now work with the configuration cache ([#2372](https://github.com/diffplug/spotless/issues/2372))
7+
* Node.JS-based tasks now work with the configuration cache ([#2372](https://github.com/diffplug/spotless/issues/2372))
8+
* Eclipse-based tasks can now handle parallel configuration ([#2389](https://github.com/diffplug/spotless/issues/2389))
89

910
## [7.0.1] - 2025-01-07
1011
### Fixed

plugin-maven/CHANGES.md

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (starting after version `1.27.0`).
44

55
## [Unreleased]
6+
* Eclipse-based tasks can now handle parallel configuration ([#2389](https://github.com/diffplug/spotless/issues/2389))
67

78
## [2.44.1] - 2025-01-07
89
### Fixed

settings.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ plugins {
2222
// https://plugins.gradle.org/plugin/com.gradle.develocity
2323
id 'com.gradle.develocity' version '3.19'
2424
// https://github.com/equodev/equo-ide/blob/main/plugin-gradle/CHANGELOG.md
25-
id 'dev.equo.ide' version '1.7.7' apply false
25+
id 'dev.equo.ide' version '1.7.8' apply false
2626
}
2727

2828
dependencyResolutionManagement {

0 commit comments

Comments
 (0)