You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2012/07/04 03:44:51 UTC

svn commit: r1357038 - /camel/trunk/tooling/archetypes/camel-archetype-scala/src/main/resources/archetype-resources/pom.xml

Author: ningjiang
Date: Wed Jul  4 01:44:50 2012
New Revision: 1357038

URL: http://svn.apache.org/viewvc?rev=1357038&view=rev
Log:
CAMEL-5417 update the camel scala archetype with eclipse-scala-ide configuration

Modified:
    camel/trunk/tooling/archetypes/camel-archetype-scala/src/main/resources/archetype-resources/pom.xml

Modified: camel/trunk/tooling/archetypes/camel-archetype-scala/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/tooling/archetypes/camel-archetype-scala/src/main/resources/archetype-resources/pom.xml?rev=1357038&r1=1357037&r2=1357038&view=diff
==============================================================================
--- camel/trunk/tooling/archetypes/camel-archetype-scala/src/main/resources/archetype-resources/pom.xml (original)
+++ camel/trunk/tooling/archetypes/camel-archetype-scala/src/main/resources/archetype-resources/pom.xml Wed Jul  4 01:44:50 2012
@@ -119,16 +119,24 @@
         <version>${maven-eclipse-plugin-version}</version>
         <configuration>
           <projectnatures>
-            <projectnature>ch.epfl.lamp.sdt.core.scalanature</projectnature>
+            <projectnature>org.scala-ide.sdt.core.scalanature</projectnature>
             <projectnature>org.eclipse.jdt.core.javanature</projectnature>
           </projectnatures>
           <buildcommands>
-            <buildcommand>ch.epfl.lamp.sdt.core.scalabuilder</buildcommand>
+            <buildcommand>org.scala-ide.sdt.core.scalabuilder</buildcommand>
           </buildcommands>
           <classpathContainers>
-            <classpathContainer>ch.epfl.lamp.sdt.launching.SCALA_CONTAINER</classpathContainer>
+            <classpathContainer>org.scala-ide.sdt.launching.SCALA_CONTAINER</classpathContainer>
             <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer>
           </classpathContainers>
+          <excludes>
+            <exclude>org.scala-lang:scala-library</exclude>
+            <exclude>org.scala-lang:scala-compiler</exclude>
+          </excludes>
+          <sourceIncludes>
+            <sourceInclude>**/*.scala</sourceInclude>
+            <sourceInclude>**/*.java</sourceInclude>
+          </sourceIncludes>
         </configuration>
       </plugin>