Skip to content

Commit 2e4197e

Browse files
committed
Fix typo in gradle properties
Fix typo in constant used by gradle scripts: ECLISPE -> ECLIPSE
1 parent 6dfa398 commit 2e4197e

File tree

6 files changed

+15
-15
lines changed

6 files changed

+15
-15
lines changed

_ext/eclipse-cdt/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,13 +19,13 @@ apply from: rootProject.file('gradle/java-publish.gradle')
1919
dependencies {
2020
implementation "com.diffplug.spotless:spotless-eclipse-base:${VER_SPOTLESS_ECLISPE_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: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ VER_JAVA=11
77
# Compile dependencies
88
VER_ECLIPSE_CDT=10.5
99
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[
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/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ apply from: rootProject.file('gradle/java-publish.gradle')
4141
dependencies {
4242
implementation "com.diffplug.spotless:spotless-eclipse-base:${VER_SPOTLESS_ECLISPE_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: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ VER_JAVA=11
77
# Compile
88
VER_ECLIPSE=4.21
99
VER_SPOTLESS_ECLISPE_BASE=[3.4.2,4.0.0[
10-
VER_ECLISPE_JFACE=[3.15.300,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-wtp/build.gradle

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,20 +64,20 @@ dependencies {
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
}

_ext/eclipse-wtp/gradle.properties

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ VER_JAVA=11
88
VER_ECLIPSE_WTP=2021-09
99
VER_SPOTLESS_ECLISPE_BASE=[3.5.0,4.0.0[
1010
VER_IBM_ICU=[67.1,68[
11-
VER_ECLISPE_EMF=[2.22.0,3.0.0[
11+
VER_ECLIPSE_EMF=[2.22.0,3.0.0[
1212
VER_ECLIPSE_OSGI_SERVICES=[3.10.0,4.0.0[
1313
VER_ECLIPSE_FILE_BUFFERS=[3.7.0,4.0.0[
14-
VER_ECLISPE_JFACE=[3.18.0,4.0.0[
15-
VER_ECLISPE_EFS=[1.9.0,2.0.0[
16-
VER_ECLISPE_XSD=[2.18.0,3.0.0[
14+
VER_ECLIPSE_JFACE=[3.18.0,4.0.0[
15+
VER_ECLIPSE_EFS=[1.9.0,2.0.0[
16+
VER_ECLIPSE_XSD=[2.18.0,3.0.0[

0 commit comments

Comments
 (0)