Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
- Generated manifest is now put into the output resources directory, to make sure that it's available at runtime for development.
- Fixed a bug in ProjectDepsPlugin where similarly-named jars might not replace all of the desired projects.
+ e.g. if you want to replace `durian-swt`, `durian-swt.os`, and `durian-swt.cocoa.macosx.x86_64`, in the old version `durian-swt` would not get replaced. Now fixed. ([#80](https://github.com/diffplug/goomph/pull/80))
- Add BndManifest support for every Jar task [(#79)](https://github.com/diffplug/goomph/pull/79)
- Add BndManifest support for every Jar task. [(#79)](https://github.com/diffplug/goomph/pull/79)
- Added eclipse `4.9.0`. ([#83](https://github.com/diffplug/goomph/pull/83))

### Version 3.16.0 - August 1st 2018 ([javadoc](http://diffplug.github.io/goomph/javadoc/3.16.0/), [jcenter](https://bintray.com/diffplug/opensource/goomph/3.16.0/view))

Expand Down
5 changes: 3 additions & 2 deletions src/main/java/com/diffplug/gradle/pde/EclipseRelease.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public static EclipseRelease official(String version) {
}
}

public static final String LATEST = "4.8.0";
public static final String LATEST = "4.9.0";

public static EclipseRelease latestOfficial() {
return official(LATEST);
Expand Down Expand Up @@ -112,9 +112,10 @@ private static EclipseRelease officialReleaseMaybe(String version) {
case "4.7.3": return root + "4.7/R-4.7.3-201803010715/";
case "4.7.3.a": return root + "4.7/R-4.7.3a-201803300640/";
case "4.8.0": return root + "4.8/R-4.8-201806110500/";
case "4.9.0": return root + "4.9/R-4.9-201809060745/";
// less-specific versions
case "3.5": case "3.6": case "3.7": case "3.8":
case "4.2": case "4.3": case "4.4": case "4.5": case "4.6": case "4.7": case "4.8":
case "4.2": case "4.3": case "4.4": case "4.5": case "4.6": case "4.7": case "4.8": case "4.9":
return root + v + "/";
default: return null;
}
Expand Down