File tree 2 files changed +6
-1
lines changed
src/main/java/com/diffplug/gradle/eclipse
2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change 2
2
3
3
## [ Unreleased]
4
4
5
+ ### Fixed
6
+ - Fix ecj mapping in eclipseMavenCentral ([ #158 ] ( https://github.com/diffplug/goomph/pull/158 ) )
7
+
5
8
## [ 3.32.1] - 2021-09-09
6
9
7
10
### Fixed
Original file line number Diff line number Diff line change @@ -51,7 +51,9 @@ public static boolean isEclipseGroup(String group) {
51
51
52
52
/** Returns the MavenCentral groupId:artifactId appropriate for the given bundleId. */
53
53
public static String groupIdArtifactId (String bundleId ) {
54
- if (bundleId .startsWith (JDT )) {
54
+ if ("org.eclipse.jdt.core.compiler.batch" .equals (bundleId )) {
55
+ return JDT + ":ecj" ;
56
+ } else if (bundleId .startsWith (JDT )) {
55
57
return JDT + ":" + bundleId ;
56
58
} else if (bundleId .startsWith (PDE )) {
57
59
return PDE + ":" + bundleId ;
You can’t perform that action at this time.
0 commit comments