We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c3f1b03 commit 9b2da35Copy full SHA for 9b2da35
CHANGES.md
@@ -2,6 +2,9 @@
2
3
## [Unreleased]
4
5
+### Fixed
6
+- Fix ecj mapping in eclipseMavenCentral ([#158](https://github.com/diffplug/goomph/pull/158))
7
+
8
## [3.32.1] - 2021-09-09
9
10
### Fixed
src/main/java/com/diffplug/gradle/eclipse/MavenCentralMapping.java
@@ -51,7 +51,9 @@ public static boolean isEclipseGroup(String group) {
51
52
/** Returns the MavenCentral groupId:artifactId appropriate for the given bundleId. */
53
public static String groupIdArtifactId(String bundleId) {
54
- if (bundleId.startsWith(JDT)) {
+ if ("org.eclipse.jdt.core.compiler.batch".equals(bundleId)) {
55
+ return JDT + ":ecj";
56
+ } else if (bundleId.startsWith(JDT)) {
57
return JDT + ":" + bundleId;
58
} else if (bundleId.startsWith(PDE)) {
59
return PDE + ":" + bundleId;
0 commit comments