Skip to content

Commit 8463eea

Browse files
authored
Fixup CI (#35)
2 parents c1f1825 + b61e234 commit 8463eea

File tree

5 files changed

+13
-11
lines changed

5 files changed

+13
-11
lines changed

build.gradle

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,8 @@ subprojects { subProject ->
2020

2121
ext.maven_name = subProject.name
2222
ext.javadoc_links = [
23-
"https://javadoc.io/doc/com.diffplug.durian/durian-core/${VER_DURIAN}",
2423
"https://javadoc.io/doc/com.diffplug.durian/durian-collect/${VER_DURIAN}",
2524
"https://javadoc.io/doc/com.diffplug.durian/durian-concurrent/${VER_DURIAN}",
26-
"https://javadoc.io/doc/com.diffplug.durian/durian-debug/${VER_DURIAN_DEBUG}",
2725
"https://javadoc.io/doc/com.diffplug.durian/durian-rx/${VER_DURIAN_RX}",
2826
'https://docs.oracle.com/javase/8/docs/api/'
2927
].join(' ')
@@ -56,7 +54,7 @@ subprojects { subProject ->
5654
}
5755
} else {
5856
String platformCode = project.name.substring('durian-swt.'.length())
59-
String SWT_TO_USE = platformCode.endsWith("x86") ? SWT_VERSION_X86 : SWT_VERSION
57+
String SWT_TO_USE = platformCode.endsWith("x86") ? VER_ECLIPSE_PLATFORM_X86 : VER_ECLIPSE_PLATFORM
6058
apply plugin: 'dev.equo.p2deps'
6159
p2deps {
6260
into 'api', {

durian-swt/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,19 @@ apply from: 干.file('base/kotlin.gradle')
33
apply plugin: 'dev.equo.p2deps'
44
p2deps {
55
into 'api', {
6-
p2repo "https://download.eclipse.org/eclipse/updates/$SWT_VERSION/"
6+
p2repo "https://download.eclipse.org/eclipse/updates/$VER_ECLIPSE_PLATFORM/"
77
install 'org.eclipse.swt'
88
install 'org.eclipse.jface'
99
addFilter 'no-platform', {
1010
it.platformNone()
1111
}
1212
}
1313
into 'compileOnly', {
14-
p2repo "https://download.eclipse.org/eclipse/updates/$SWT_VERSION/"
14+
p2repo "https://download.eclipse.org/eclipse/updates/$VER_ECLIPSE_PLATFORM/"
1515
install 'org.eclipse.swt'
1616
}
1717
into 'testImplementation', {
18-
p2repo "https://download.eclipse.org/eclipse/updates/$SWT_VERSION/"
18+
p2repo "https://download.eclipse.org/eclipse/updates/$VER_ECLIPSE_PLATFORM/"
1919
install 'org.eclipse.swt'
2020
}
2121
}

gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ VER_DURIAN=1.2.0
1616
VER_DURIAN_RX=5.0.1
1717
VER_DURIAN_DEBUG=1.1.0
1818
# SWT Dependencies from P2
19-
SWT_VERSION=4.21
20-
SWT_VERSION_X86=4.7
19+
VER_ECLIPSE_PLATFORM=4.34
20+
VER_ECLIPSE_PLATFORM_X86=4.7
2121

2222
# Testing
2323
VER_JUNIT=4.13.2

gradle/wrapper/gradle-wrapper.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-9.0.0-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-9.1.0-bin.zip
44
networkTimeout=10000
55
validateDistributionUrl=true
66
zipStoreBase=GRADLE_USER_HOME

settings.gradle

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,11 +8,13 @@ plugins {
88
// https://github.com/diffplug/blowdryer/blob/main/CHANGELOG.md
99
id 'com.diffplug.blowdryerSetup' version '1.7.1'
1010
// https://github.com/diffplug/spotless/blob/main/plugin-gradle/CHANGES.md
11-
id 'com.diffplug.spotless' version '7.0.4' apply false
11+
id 'com.diffplug.spotless' version '7.2.1' apply false
1212
// https://github.com/diffplug/spotless-changelog/blob/main/CHANGELOG.md
1313
id 'com.diffplug.spotless-changelog' version '3.1.2' apply false
1414
// https://plugins.gradle.org/plugin/com.gradle.plugin-publish
1515
id 'com.gradle.plugin-publish' version '1.3.1' apply false
16+
// https://plugins.gradle.org/plugin/com.gradle.develocity
17+
id 'com.gradle.develocity' version '4.1.1'
1618
// https://github.com/equodev/equo-ide/blob/main/plugin-gradle/CHANGELOG.md
1719
id 'dev.equo.ide' version '1.7.8' apply false
1820
// https://github.com/gradle-nexus/publish-plugin/releases
@@ -29,7 +31,7 @@ plugins {
2931
id 'dev.adamko.dokkatoo-html' version '2.4.0' apply false
3032
}
3133
blowdryerSetup {
32-
github 'diffplug/blowdryer-diffplug', 'tag', '9.0.5'
34+
github 'diffplug/blowdryer-diffplug', 'tag', '9.1.0'
3335
//devLocal '../blowdryer-diffplug'
3436
setPluginsBlockTo {
3537
it.file 'plugin.versions'
@@ -47,3 +49,5 @@ include 'durian-swt.gtk.linux.x86_64'
4749
include 'durian-swt.gtk.linux.x86'
4850
include 'durian-swt.win32.win32.x86_64'
4951
include 'durian-swt.win32.win32.x86'
52+
53+
apply from: com.diffplug.blowdryer.Blowdryer.file('base/buildscan-on-ci.gradle')

0 commit comments

Comments
 (0)