Skip to content

Commit 73b2309

Browse files
committed
Updated Eclipse dependencies to 4.5 (formerly depended on preview build 4.5 M6).
Eclipse 4.5M6 is no longer available for download from eclipse.org, forcing the change. 4.5 release will be hosted by eclipse forever-ish.
1 parent c670d59 commit 73b2309

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

build.gradle

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ repositories {
1616
ivy {
1717
// Eclipse 4.5 M6 has lots of formatter improvements
1818
// Future versions can be found here: http://download.eclipse.org/eclipse/downloads/index.html
19-
url "http://download.eclipse.org/eclipse/updates/4.5milestones/S-4.5M6-201503200800/"
19+
url "http://download.eclipse.org/eclipse/updates/4.5/R-4.5-201506032000/"
2020
layout "pattern", {
2121
artifact "plugins/[artifact]_[revision].[ext]"
2222
}
@@ -54,22 +54,22 @@ dependencies {
5454
compile "com.diffplug.durian:durian:${VER_DURIAN}"
5555

5656
// The only dependencies we actually use
57-
embeddedJars 'p2:org.eclipse.jdt.core:3.11.0.v20150317-0048'
58-
embeddedJars 'p2:org.eclipse.text:3.5.400.v20140915-2351'
57+
embeddedJars 'p2:org.eclipse.jdt.core:3.11.0.v20150602-1242'
58+
embeddedJars 'p2:org.eclipse.text:3.5.400.v20150505-1044'
5959

6060
// Because gradle can't consume p2, we have to resolve the transitive dependencies - and their versions - by hand.
6161
// The transitive dependencies are extremely unlikely to change, but we're probably going to want to upgrade to newer versions of Eclipse.
6262
// Here's how:
6363
// - Download http://download.eclipse.org/eclipse/updates/4.5milestones/S-4.5M6-201503200800/artifacts.jar
6464
// - Unzip this file, and you'll have artifacts.xml
6565
// - Grep through the file for the plugin id, and copy the version below
66-
embeddedJars 'p2:org.eclipse.core.contenttype:3.4.200.v20150316-1243'
67-
embeddedJars 'p2:org.eclipse.core.jobs:3.7.0.v20150316-1238'
68-
embeddedJars 'p2:org.eclipse.core.runtime:3.11.0.v20150316-1241'
69-
embeddedJars 'p2:org.eclipse.core.resources:3.9.100.v20150313-1707'
70-
embeddedJars 'p2:org.eclipse.equinox.common:3.7.0.v20150318-1503'
71-
embeddedJars 'p2:org.eclipse.equinox.preferences:3.5.300.v20150313-2125'
72-
embeddedJars 'p2:org.eclipse.osgi:3.10.100.v20150318-0312'
66+
embeddedJars 'p2:org.eclipse.core.contenttype:3.5.0.v20150421-2214'
67+
embeddedJars 'p2:org.eclipse.core.jobs:3.7.0.v20150330-2103'
68+
embeddedJars 'p2:org.eclipse.core.runtime:3.11.0.v20150405-1723'
69+
embeddedJars 'p2:org.eclipse.core.resources:3.10.0.v20150423-0755'
70+
embeddedJars 'p2:org.eclipse.equinox.common:3.7.0.v20150402-1709'
71+
embeddedJars 'p2:org.eclipse.equinox.preferences:3.5.300.v20150408-1437'
72+
embeddedJars 'p2:org.eclipse.osgi:3.10.100.v20150529-1857'
7373

7474
configurations.compile.extendsFrom(configurations.embeddedJars)
7575
}

0 commit comments

Comments
 (0)