Skip to content

Commit

Permalink
Simpler solution to the aliasing problem than a bundle fragment.
Browse files Browse the repository at this point in the history
  • Loading branch information
milessabin committed Jun 27, 2010
1 parent 317a7c5 commit 60ef2e8
Show file tree
Hide file tree
Showing 8 changed files with 24 additions and 75 deletions.
1 change: 0 additions & 1 deletion ch.epfl.lamp.sdt.core/.gitignore

This file was deleted.

22 changes: 0 additions & 22 deletions ch.epfl.lamp.sdt.core/.project

This file was deleted.

6 changes: 0 additions & 6 deletions ch.epfl.lamp.sdt.core/META-INF/MANIFEST.MF

This file was deleted.

3 changes: 0 additions & 3 deletions ch.epfl.lamp.sdt.core/build.properties

This file was deleted.

28 changes: 0 additions & 28 deletions ch.epfl.lamp.sdt.core/fragment.xml

This file was deleted.

14 changes: 0 additions & 14 deletions ch.epfl.lamp.sdt.core/pom.xml

This file was deleted.

1 change: 0 additions & 1 deletion org.scala-ide.build/pom.xml
Expand Up @@ -21,7 +21,6 @@
<module>../org.scala-ide.sdt.weaving.feature</module>
<module>../org.scala-ide.sdt.aspects</module>
<module>../org.scala-ide.sdt.core</module>
<module>../ch.epfl.lamp.sdt.core</module>
<module>../org.scala-ide.sdt.feature</module>
<module>../org.scala-ide.sdt.update-site</module>
</modules>
Expand Down
24 changes: 24 additions & 0 deletions org.scala-ide.sdt.core/plugin.xml
Expand Up @@ -210,6 +210,11 @@
natureId="org.scala-ide.sdt.core.scalanature"
icon="icons/full/ovr16/scala_co.gif"
id="org.scala-ide.sdt.core.scalaNatureImage"/>
<!-- Retained for backwards compatibility -->
<image
natureId="ch.epfl.lamp.sdt.core.scalanature"
icon="icons/full/ovr16/scala_co.gif"
id="org.scala-ide.sdt.core.scalaNatureImage"/>
</extension>

<extension
Expand Down Expand Up @@ -250,6 +255,11 @@
class="scala.tools.eclipse.ScalaClasspathContainerInitializer"
id="org.scala-ide.sdt.launching.SCALA_CONTAINER">
</classpathContainerInitializer>
<!-- Retained for backwards compatibility -->
<classpathContainerInitializer
class="scala.tools.eclipse.ScalaClasspathContainerInitializer"
id="ch.epfl.lamp.sdt.launching.SCALA_CONTAINER">
</classpathContainerInitializer>
</extension>
<extension point = "org.eclipse.debug.core.launchConfigurationTypes">
<launchConfigurationType
Expand Down Expand Up @@ -323,6 +333,20 @@
<run class="scala.tools.eclipse.ScalaBuilder"/>
</builder>
</extension>
<!-- Retained for backwards compatibility -->
<extension id="ch.epfl.lamp.sdt.core.scalanature" name="Scala Nature" point="org.eclipse.core.resources.natures">
<runtime>
<run class="scala.tools.eclipse.Nature"/>
</runtime>
<builder id="ch.epfl.lamp.sdt.core.scalabuilder"/>
<requires-nature id="org.eclipse.jdt.core.javanature"/>
</extension>
<!-- Retained for backwards compatibility -->
<extension id="ch.epfl.lamp.sdt.core.scalabuilder" name="Scala Builder" point="org.eclipse.core.resources.builders">
<builder hasNature="true">
<run class="scala.tools.eclipse.ScalaBuilder"/>
</builder>
</extension>
<extension
point="org.eclipse.ui.perspectiveExtensions">
<perspectiveExtension targetID="org.eclipse.jdt.ui.JavaPerspective">
Expand Down

0 comments on commit 60ef2e8

Please sign in to comment.