Skip to content

Commit 77c480e

Browse files
committed
Bump equo versions to latest, which fixes parallel downloads.
1 parent b50fcaf commit 77c480e

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

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());

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)