-
Notifications
You must be signed in to change notification settings - Fork 459
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Gradle 4 `_ext` projects converted to sub-projects of root supporting Gradle 6. GOOMPH updated to version 3.21.0.
- Loading branch information
Showing
28 changed files
with
177 additions
and
243 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,9 @@ | ||
# Mayor versions correspond to the supported Eclipse core version. | ||
# Minor version is incremented for features or incompatible changes (including changes to supported dependency versions). | ||
# Patch version is incremented for backward compatible patches of this library. | ||
ext_version=3.2.1 | ||
ext_artifactId=spotless-eclipse-base | ||
ext_description=Eclipse bundle controller and services for Spotless | ||
|
||
ext_org=diffplug | ||
ext_group=com.diffplug.spotless | ||
|
||
# Build requirements | ||
ext_VER_JAVA=1.8 | ||
version=3.2.1 | ||
artifactId=spotless-eclipse-base | ||
description=Eclipse bundle controller and services for Spotless | ||
|
||
# Compile dependencies | ||
VER_ECLIPSE_CORE_RESOURCES=[3.13.400,4.0.0[ | ||
|
||
# Provided dependencies | ||
VER_SLF4J=[1.6,2.0[ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,21 +1,13 @@ | ||
# Versions correspond to the Eclipse-CDT version used for the fat-JAR. | ||
# See https://www.eclipse.org/cdt/ for further information about Eclipse-CDT versions. | ||
# Patch version can be incremented independently for backward compatible patches of this library. | ||
ext_version=9.9.0 | ||
ext_artifactId=spotless-eclipse-cdt | ||
ext_description=Eclipse's CDT C/C++ formatter bundled for Spotless | ||
ext_org=diffplug | ||
ext_group=com.diffplug.spotless | ||
|
||
# Build requirements | ||
ext_VER_JAVA=1.8 | ||
version=9.9.0 | ||
artifactId=spotless-eclipse-cdt | ||
description=Eclipse's CDT C/C++ formatter bundled for Spotless | ||
|
||
# Compile dependencies | ||
VER_ECLIPSE_CDT=9.9 | ||
VER_SPOTLESS_ECLISPE_BASE=[3.2.0,4.0.0[ | ||
VER_ECLISPE_JFACE=[3.15.300,4.0.0[ | ||
VER_ECLISPE_PLATFORM=[3.6.700,4.0.0[ | ||
VER_IBM_ICU=[61,62[ | ||
|
||
# Provided dependencies | ||
VER_SLF4J=[1.6,2.0[ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,12 +2,12 @@ ext { | |
developers = [ | ||
fvgh: [ name: 'Frank Vennemeyer', email: '[email protected]' ], | ||
] | ||
|
||
p2Repository = "https://dist.springsource.org/release/GRECLIPSE/${VER_GRECLIPSE}/e${VER_ECLIPSE}" | ||
|
||
p2Dependencies = [ | ||
p2Dependencies = [ | ||
'org.codehaus.groovy.eclipse.refactoring':'+', // GroovyFormatter and related | ||
|
||
// The following lists does not reflect the complete transitive required packages, but | ||
// the once used during code formatting | ||
'org.codehaus.groovy':'+', // Groovy compiler patches supporting use within GrEclipse and Groovy itself | ||
|
@@ -18,18 +18,24 @@ ext { | |
|
||
internalJars = [ | ||
//Jars included by org.codehaus.groovy | ||
"**/groovy-${VER_GROOVY}-indy", // Use Groovy compiler compatible with GrEclipse instead of localGroovy | ||
'**/groovy-eclipse', // Patches/Overrides some of the Groovy compiler classes | ||
'**/eclipse-trace', // Provides logging capabilities for groovy-eclipse | ||
|
||
////////////////////////////////////////////////////////////////////////// | ||
// Use Groovy compiler compatible with GrEclipse instead of localGroovy | ||
"**/groovy-${VER_GROOVY}-indy", | ||
// Patches/Overrides some of the Groovy compiler classes | ||
'**/groovy-eclipse', | ||
// Provides logging capabilities for groovy-eclipse | ||
'**/eclipse-trace', | ||
//Jars included by org.eclipse.jdt.groovy.core | ||
'**/nlcl' //Non locking class loader used by groovy compiler | ||
////////////////////////////////////////////////////////////////////////// | ||
//Non locking class loader used by groovy compiler | ||
'**/nlcl' | ||
] | ||
|
||
} | ||
|
||
apply from: rootProject.file('../gradle/p2-fat-jar-setup.gradle') | ||
apply from: rootProject.file('../gradle/java-publish.gradle') | ||
apply from: rootProject.file('_ext/gradle/update-lockfile.gradle') | ||
apply from: rootProject.file('_ext/gradle/p2-fat-jar-setup.gradle') | ||
apply from: rootProject.file('_ext/gradle/java-publish.gradle') | ||
|
||
dependencies { | ||
compile "com.diffplug.spotless:spotless-eclipse-base:${VER_SPOTLESS_ECLISPE_BASE}" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,13 @@ | ||
# Versions correspond to the Groovy-Eclipse version used for the fat-JAR. | ||
# See https://github.com/groovy/groovy-eclipse/releases for further information about Groovy-Eclipse versions. | ||
# Patch version can be incremented independently for backward compatible patches of this library. | ||
ext_version=3.5.0 | ||
ext_artifactId=spotless-eclipse-groovy | ||
ext_description=Groovy Eclipse's formatter bundled for Spotless | ||
|
||
ext_org=diffplug | ||
ext_group=com.diffplug.spotless | ||
|
||
# Build requirements | ||
ext_VER_JAVA=1.8 | ||
version=3.5.0 | ||
artifactId=spotless-eclipse-groovy | ||
description=Groovy Eclipse's formatter bundled for Spotless | ||
|
||
# Compile | ||
VER_ECLIPSE=4.13 | ||
VER_SPOTLESS_ECLISPE_BASE=[3.2.0,4.0.0[ | ||
VER_ECLISPE_JFACE=[3.15.300,4.0.0[ | ||
VER_GRECLIPSE=3.5.0 | ||
VER_GROOVY=3.0.0 | ||
|
||
# Provided dependencies | ||
VER_SLF4J=[1.6,2.0[ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.