Skip to content
This repository has been archived by the owner on Apr 3, 2018. It is now read-only.

Commit

Permalink
LANG: Update requirements to Eclipse 4.5
Browse files Browse the repository at this point in the history
  • Loading branch information
bruno-medeiros committed Jul 6, 2015
1 parent 327b18c commit 756cb86
Show file tree
Hide file tree
Showing 7 changed files with 17 additions and 13 deletions.
4 changes: 2 additions & 2 deletions documentation/Installation.md
@@ -1,13 +1,13 @@
## Installation ## Installation


#### Requirements: #### Requirements:
* Eclipse 4.4.1 (Luna SR1) or later. * Eclipse 4.5 (Mars) or later.
* Java VM version 8 or later. * Java VM version 8 or later.
* Go development tools and libraries installed on target machine (http://golang.org/doc/install.html). Currently, only the plan 9 style compilers are supported. GCCGO may be supported in the future * Go development tools and libraries installed on target machine (http://golang.org/doc/install.html). Currently, only the plan 9 style compilers are supported. GCCGO may be supported in the future


#### Instructions: #### Instructions:
1. Use your existing Eclipse, or download a new Eclipse package from http://www.eclipse.org/downloads/. 1. Use your existing Eclipse, or download a new Eclipse package from http://www.eclipse.org/downloads/.
* For an Eclipse package without any other IDEs or extras (such a VCS tools), download the ["Platform Runtime Binary"](http://archive.eclipse.org/eclipse/downloads/drops4/R-4.4.1-201409250400/#PlatformRuntime). * For an Eclipse package without any other IDEs or extras (such a VCS tools), download the ["Platform Runtime Binary"](http://archive.eclipse.org/eclipse/downloads/drops4/R-4.5-201506032000/#PlatformRuntime).
1. Start Eclipse, go to `Help -> Install New Software...` 1. Start Eclipse, go to `Help -> Install New Software...`
1. Click the `Add...` button, then enter the Update Site URL: **http://goclipse.github.io/releases/** in the Location field, click OK. 1. Click the `Add...` button, then enter the Update Site URL: **http://goclipse.github.io/releases/** in the Location field, click OK.
1. Select the recently added update site in the `Work with:` dropdown. Type `GoClipse` in the filter box. Now the Goclipse feature should appear below. 1. Select the recently added update site in the `Work with:` dropdown. Type `GoClipse` in the filter box. Now the Goclipse feature should appear below.
Expand Down
2 changes: 1 addition & 1 deletion feature/feature.xml
Expand Up @@ -119,7 +119,7 @@ This Agreement is governed by the laws of the State of New York and the intellec
</license> </license>


<requires> <requires>
<import feature="org.eclipse.platform" version="4.4.0.v20140925-0400" match="compatible"/> <import feature="org.eclipse.platform" version="4.5.0" match="compatible"/>
<import feature="org.eclipse.cdt.gnu.dsf" version="8.7.0" match="compatible"/> <import feature="org.eclipse.cdt.gnu.dsf" version="8.7.0" match="compatible"/>
<import feature="org.eclipse.cdt.platform" version="8.7.0" match="compatible"/> <import feature="org.eclipse.cdt.platform" version="8.7.0" match="compatible"/>
</requires> </requires>
Expand Down
Expand Up @@ -113,10 +113,11 @@ protected void treeViewerPostSelectionChanged(SelectionChangedEvent event) {


/* ----------------- Show in target ----------------- */ /* ----------------- Show in target ----------------- */


@SuppressWarnings("unchecked")
@Override @Override
public Object getAdapter(Class key) { public <T> T getAdapter(Class<T> adapter) {
if (key == IShowInTarget.class) { if(adapter == IShowInTarget.class) {
return getShowInTarget(); return (T) getShowInTarget();
} }


return null; return null;
Expand Down
4 changes: 2 additions & 2 deletions releng/ProjectSite-skeleton/releases/compositeArtifacts.xml
Expand Up @@ -2,11 +2,11 @@
<?compositeArtifactRepository version='1.0.0'?> <?compositeArtifactRepository version='1.0.0'?>
<repository name='Goclipse Site' type='org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository' version='1'> <repository name='Goclipse Site' type='org.eclipse.equinox.internal.p2.artifact.repository.CompositeArtifactRepository' version='1'>
<properties size='2'> <properties size='2'>
<property name='p2.timestamp' value='1411132613223'/> <property name='p2.timestamp' value='1436205714761'/>
<property name='p2.atomic.composite.loading' value='true'/> <property name='p2.atomic.composite.loading' value='true'/>
</properties> </properties>
<children size='2'> <children size='2'>
<child location='http://download.eclipse.org/releases/luna'/> <child location='http://download.eclipse.org/releases/mars'/>
<child location='local-repo'/> <child location='local-repo'/>
</children> </children>
</repository> </repository>
4 changes: 2 additions & 2 deletions releng/ProjectSite-skeleton/releases/compositeContent.xml
Expand Up @@ -2,11 +2,11 @@
<?compositeMetadataRepository version='1.0.0'?> <?compositeMetadataRepository version='1.0.0'?>
<repository name='Goclipse Site' type='org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository' version='1'> <repository name='Goclipse Site' type='org.eclipse.equinox.internal.p2.metadata.repository.CompositeMetadataRepository' version='1'>
<properties size='2'> <properties size='2'>
<property name='p2.timestamp' value='1411132613276'/> <property name='p2.timestamp' value='1436205714794'/>
<property name='p2.atomic.composite.loading' value='true'/> <property name='p2.atomic.composite.loading' value='true'/>
</properties> </properties>
<children size='2'> <children size='2'>
<child location='http://download.eclipse.org/releases/luna'/> <child location='http://download.eclipse.org/releases/mars'/>
<child location='local-repo'/> <child location='local-repo'/>
</children> </children>
</repository> </repository>
4 changes: 2 additions & 2 deletions releng/compositeSite-helper.xml
Expand Up @@ -2,7 +2,7 @@
<project name="project" > <project name="project" >


<property name="repo.name" value="Goclipse Site" /> <property name="repo.name" value="Goclipse Site" />
<property name="repo.dir" value="UpdateSite-skeleton" /> <property name="repo.dir" value="ProjectSite-skeleton/releases" />


<!-- <!--
====================================================================== ======================================================================
Expand All @@ -15,7 +15,7 @@ eclipse -application org.eclipse.ant.core.antRunner -consolelog createCompositeR
<p2.composite.repository failOnExists="true"> <p2.composite.repository failOnExists="true">
<repository location="${repo.dir}" name="${repo.name}" compressed="false" /> <repository location="${repo.dir}" name="${repo.name}" compressed="false" />
<add> <add>
<repository location="http://download.eclipse.org/releases/luna" /> <repository location="http://download.eclipse.org/releases/mars" />
<repository location="local-repo" /> <repository location="local-repo" />
</add> </add>
</p2.composite.repository> </p2.composite.repository>
Expand Down
5 changes: 4 additions & 1 deletion releng/target-platform/IDE.target
Expand Up @@ -7,7 +7,10 @@
<repository location="http://archive.eclipse.org/tools/orbit/downloads/drops/R20130517111416/repository/"/> <repository location="http://archive.eclipse.org/tools/orbit/downloads/drops/R20130517111416/repository/"/>
</location> </location>
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit"> <location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
<unit id="org.eclipse.platform.feature.group" version="4.4.0.v20140925-0400"/> <unit id="org.eclipse.platform.feature.group" version="4.5.0.v20150603-2358"/>
<repository location="http://download.eclipse.org/releases/mars"/>
</location>
<location includeAllPlatforms="false" includeConfigurePhase="true" includeMode="planner" includeSource="true" type="InstallableUnit">
<unit id="org.eclipse.cdt.platform.feature.group" version="8.7.0.201506070905"/> <unit id="org.eclipse.cdt.platform.feature.group" version="8.7.0.201506070905"/>
<unit id="org.eclipse.cdt.gnu.dsf.feature.group" version="8.7.0.201506070905"/> <unit id="org.eclipse.cdt.gnu.dsf.feature.group" version="8.7.0.201506070905"/>
<repository location="http://download.eclipse.org/releases/mars"/> <repository location="http://download.eclipse.org/releases/mars"/>
Expand Down

0 comments on commit 756cb86

Please sign in to comment.