You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tuscany.apache.org by js...@apache.org on 2008/10/30 23:59:05 UTC

svn commit: r709273 - /tuscany/branches/sca-equinox/modules/pom.xml

Author: jsdelfino
Date: Thu Oct 30 15:59:04 2008
New Revision: 709273

URL: http://svn.apache.org/viewvc?rev=709273&view=rev
Log:
Added plugin to generate correct PDE project .classpath and .project files.

Modified:
    tuscany/branches/sca-equinox/modules/pom.xml

Modified: tuscany/branches/sca-equinox/modules/pom.xml
URL: http://svn.apache.org/viewvc/tuscany/branches/sca-equinox/modules/pom.xml?rev=709273&r1=709272&r2=709273&view=diff
==============================================================================
--- tuscany/branches/sca-equinox/modules/pom.xml (original)
+++ tuscany/branches/sca-equinox/modules/pom.xml Thu Oct 30 15:59:04 2008
@@ -168,20 +168,28 @@
                <artifactId>maven-eclipse-plugin</artifactId>
                <version>2.5.1</version>
                <configuration>
-                   <buildcommands>
-                       <buildcommand>org.eclipse.pde.ManifestBuilder</buildcommand>
-                       <buildcommand>org.eclipse.jdt.core.javabuilder</buildcommand>
-                   </buildcommands>
-                   <projectnatures>
-                       <projectnature>org.eclipse.jdt.core.javanature</projectnature>
-                       <projectnature>org.eclipse.pde.PluginNature</projectnature>
-                   </projectnatures>
-                   <classpathContainers>
-                       <classpathContainer>org.eclipse.jdt.launching.JRE_CONTAINER</classpathContainer>
-                   </classpathContainers>
+                   <skip>true</skip>
                </configuration>
            </plugin>
 
+           <plugin> 
+               <groupId>org.apache.tuscany.sca</groupId> 
+               <artifactId>tuscany-maven-bundle-plugin</artifactId> 
+               <version>1.4-SNAPSHOT</version> 
+               <extensions>true</extensions> 
+               <executions> 
+                   <execution> 
+                       <id>generate-pde</id> 
+                       <phase>generate-resources</phase> 
+                       <goals> 
+                           <goal>generate-pde</goal> 
+                       </goals> 
+                       <configuration> 
+                       </configuration> 
+                   </execution>
+               </executions>
+           </plugin>
+
            <plugin>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>