Skip to content

Commit 8d1467f

Browse files
authored
Fix typo in gradle properties (#1425)
2 parents 3853efb + 7949f87 commit 8d1467f

File tree

11 files changed

+29
-23
lines changed

11 files changed

+29
-23
lines changed

_ext/eclipse-cdt/CHANGES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (starting after version `9.9.0`).
44

55
## [Unreleased]
6+
### Fixed
7+
* Fix typo in gradle variable names ([#1425](https://github.com/diffplug/spotless/pull/1425))
68

79
## [10.5.0] - 2021-12-13
810
### Added

_ext/eclipse-cdt/build.gradle

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,15 +17,15 @@ apply from: rootProject.file('gradle/java-publish.gradle')
1717

1818

1919
dependencies {
20-
implementation "com.diffplug.spotless:spotless-eclipse-base:${VER_SPOTLESS_ECLISPE_BASE}"
20+
implementation "com.diffplug.spotless:spotless-eclipse-base:${VER_SPOTLESS_ECLIPSE_BASE}"
2121
// Provides text partitioners for formatters
22-
implementation ("org.eclipse.platform:org.eclipse.jface.text:${VER_ECLISPE_JFACE}") {
22+
implementation ("org.eclipse.platform:org.eclipse.jface.text:${VER_ECLIPSE_JFACE}") {
2323
exclude group: 'org.eclipse.platform', module: 'org.eclipse.swt'
2424
}
2525
// Required to by CCorePlugin calling CDTLogWriter
2626
implementation "com.ibm.icu:icu4j:${VER_IBM_ICU}"
2727
// Required to by CCorePlugin calling PositionTrackerManager
28-
implementation "org.eclipse.platform:org.eclipse.core.filebuffers:${VER_ECLISPE_EFS}"
28+
implementation "org.eclipse.platform:org.eclipse.core.filebuffers:${VER_ECLIPSE_EFS}"
2929

3030
testImplementation("org.slf4j:slf4j-simple:${VER_SLF4J}")
3131
}

_ext/eclipse-cdt/gradle.properties

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ VER_JAVA=11
66

77
# Compile dependencies
88
VER_ECLIPSE_CDT=10.5
9-
VER_SPOTLESS_ECLISPE_BASE=[3.5.0,4.0.0[
10-
VER_ECLISPE_JFACE=[3.18.0,4.0.0[
11-
VER_ECLISPE_EFS=[3.7.0,4.0.0[
9+
VER_SPOTLESS_ECLIPSE_BASE=[3.5.0,4.0.0[
10+
VER_ECLIPSE_JFACE=[3.18.0,4.0.0[
11+
VER_ECLIPSE_EFS=[3.7.0,4.0.0[
1212
VER_IBM_ICU=[67.1,68[

_ext/eclipse-groovy/CHANGES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (starting after version `3.5.0`).
44

55
## [Unreleased]
6+
### Fixed
7+
* Fix typo in gradle variable names ([#1425](https://github.com/diffplug/spotless/pull/1425))
68

79
## [4.3.0] - 2021-10-13
810
### Added

_ext/eclipse-groovy/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,9 @@ apply from: rootProject.file('_ext/gradle/p2-fat-jar-setup.gradle')
3939
apply from: rootProject.file('gradle/java-publish.gradle')
4040

4141
dependencies {
42-
implementation "com.diffplug.spotless:spotless-eclipse-base:${VER_SPOTLESS_ECLISPE_BASE}"
42+
implementation "com.diffplug.spotless:spotless-eclipse-base:${VER_SPOTLESS_ECLIPSE_BASE}"
4343
// Provides text partitioners for formatters
44-
implementation ("org.eclipse.platform:org.eclipse.jface.text:${VER_ECLISPE_JFACE}") {
44+
implementation ("org.eclipse.platform:org.eclipse.jface.text:${VER_ECLIPSE_JFACE}") {
4545
exclude group: 'org.eclipse.platform', module: 'org.eclipse.swt'
4646
}
4747
testImplementation("org.slf4j:slf4j-simple:${VER_SLF4J}")

_ext/eclipse-groovy/gradle.properties

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,8 +6,8 @@ VER_JAVA=11
66

77
# Compile
88
VER_ECLIPSE=4.21
9-
VER_SPOTLESS_ECLISPE_BASE=[3.4.2,4.0.0[
10-
VER_ECLISPE_JFACE=[3.15.300,4.0.0[
9+
VER_SPOTLESS_ECLIPSE_BASE=[3.4.2,4.0.0[
10+
VER_ECLIPSE_JFACE=[3.15.300,4.0.0[
1111
VER_GRECLIPSE=4.3.0
1212
VER_GROOVY=4.0.0
1313
# Use org.eclipse.jdt.core patched for Groovy-Eclipse

_ext/eclipse-jdt/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ ext {
1010
}
1111

1212
dependencies {
13-
implementation "com.diffplug.spotless:spotless-eclipse-base:${VER_SPOTLESS_ECLISPE_BASE}"
13+
implementation "com.diffplug.spotless:spotless-eclipse-base:${VER_SPOTLESS_ECLIPSE_BASE}"
1414
implementation("org.eclipse.jdt:org.eclipse.jdt.core:${VER_ECLIPSE_JDT_CORE}") {
1515
exclude group: 'org.eclipse.platform', module: 'org.eclipse.ant.core'
1616
exclude group: 'org.eclipse.platform', module: 'org.eclipse.core.expressions'

_ext/eclipse-jdt/gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,4 +6,4 @@ VER_JAVA=11
66

77
# Compile
88
VER_ECLIPSE_JDT_CORE=[3.13.0,4.0.0[
9-
VER_SPOTLESS_ECLISPE_BASE=[3.5.0,4.0.0[
9+
VER_SPOTLESS_ECLIPSE_BASE=[3.5.0,4.0.0[

_ext/eclipse-wtp/CHANGES.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,8 @@
33
We adhere to the [keepachangelog](https://keepachangelog.com/en/1.0.0/) format (starting after version `3.15.1`).
44

55
## [Unreleased]
6+
### Fixed
7+
* Fix typo in gradle variable names ([#1425](https://github.com/diffplug/spotless/pull/1425))
68

79
## [3.23.0] - 2021-09-22
810
### Added

_ext/eclipse-wtp/build.gradle

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -60,24 +60,24 @@ apply from: rootProject.file('_ext/gradle/p2-fat-jar-setup.gradle')
6060
apply from: rootProject.file('gradle/java-publish.gradle')
6161

6262
dependencies {
63-
implementation "com.diffplug.spotless:spotless-eclipse-base:${VER_SPOTLESS_ECLISPE_BASE}"
63+
implementation "com.diffplug.spotless:spotless-eclipse-base:${VER_SPOTLESS_ECLIPSE_BASE}"
6464
// Required by most WPT formatters
6565
implementation "com.ibm.icu:icu4j:${VER_IBM_ICU}"
6666
// The XSD/DTD and other models are defined with EMF.
67-
implementation "org.eclipse.emf:org.eclipse.emf.common:${VER_ECLISPE_EMF}"
68-
implementation "org.eclipse.emf:org.eclipse.emf.ecore:${VER_ECLISPE_EMF}"
67+
implementation "org.eclipse.emf:org.eclipse.emf.common:${VER_ECLIPSE_EMF}"
68+
implementation "org.eclipse.emf:org.eclipse.emf.ecore:${VER_ECLIPSE_EMF}"
6969
// Some WPT plugins requires OSGI bundle interfaces (but not effectively used)
7070
implementation "org.eclipse.platform:org.eclipse.osgi.services:${VER_ECLIPSE_OSGI_SERVICES}"
7171
// Provides document data structure and file buffers for formatters
7272
implementation "org.eclipse.platform:org.eclipse.core.filebuffers:${VER_ECLIPSE_FILE_BUFFERS}"
7373
// Provides text partitioners for formatters
74-
implementation ("org.eclipse.platform:org.eclipse.jface.text:${VER_ECLISPE_JFACE}") {
74+
implementation ("org.eclipse.platform:org.eclipse.jface.text:${VER_ECLIPSE_JFACE}") {
7575
exclude group: 'org.eclipse.platform', module: 'org.eclipse.swt'
7676
}
7777
// Some WPT plugins use the EFS for storing temporary worspace data
78-
implementation "org.eclipse.platform:org.eclipse.core.filesystem:${VER_ECLISPE_EFS}"
78+
implementation "org.eclipse.platform:org.eclipse.core.filesystem:${VER_ECLIPSE_EFS}"
7979
// Required by org.eclipse.wst.xsd.core
80-
implementation "org.eclipse.emf:org.eclipse.xsd:${VER_ECLISPE_XSD}"
80+
implementation "org.eclipse.emf:org.eclipse.xsd:${VER_ECLIPSE_XSD}"
8181

8282
testImplementation("org.slf4j:slf4j-simple:${VER_SLF4J}")
8383
}

0 commit comments

Comments
 (0)