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
1 change: 1 addition & 0 deletions CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
### Version 3.13.0-SNAPSHOT - TBD ([javadoc](http://diffplug.github.io/goomph/javadoc/snapshot/), [snapshot](https://oss.sonatype.org/content/repositories/snapshots/com/diffplug/gradle/goomph/))

- Added support for translating eclipse releases to maven central coordinates. [(#61)](https://github.com/diffplug/goomph/pull/61)
- Added support for eclipse 4.7.3. [(#62)](https://github.com/diffplug/goomph/pull/62)

### Version 3.12.0 - February 26th 2018 ([javadoc](http://diffplug.github.io/goomph/javadoc/3.12.0/), [jcenter](https://bintray.com/diffplug/opensource/goomph/3.12.0/view))

Expand Down
3 changes: 2 additions & 1 deletion 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.7.2";
public static final String LATEST = "4.7.3";

public static EclipseRelease latestOfficial() {
return official(LATEST);
Expand Down Expand Up @@ -109,6 +109,7 @@ private static EclipseRelease officialReleaseMaybe(String version) {
case "4.7.1": return root + "4.7/R-4.7.1-201709061700/";
case "4.7.1.a": return root + "4.7/R-4.7.1a-201710090410/";
case "4.7.2": return root + "4.7/R-4.7.2-201711300510/";
case "4.7.3": return root + "4.7/R-4.7.3-201803010715/";
// 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":
Expand Down