You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@directory.apache.org by pa...@apache.org on 2008/10/02 15:22:58 UTC

svn commit: r701120 - /directory/studio/trunk/updatesite/pom.xml

Author: pamarcelot
Date: Thu Oct  2 06:22:58 2008
New Revision: 701120

URL: http://svn.apache.org/viewvc?rev=701120&view=rev
Log:
Fixed the generation of eclipse project descriptors (They were not generated since the last modifications of the build and Studio Maven Plugin).

Modified:
    directory/studio/trunk/updatesite/pom.xml

Modified: directory/studio/trunk/updatesite/pom.xml
URL: http://svn.apache.org/viewvc/directory/studio/trunk/updatesite/pom.xml?rev=701120&r1=701119&r2=701120&view=diff
==============================================================================
--- directory/studio/trunk/updatesite/pom.xml (original)
+++ directory/studio/trunk/updatesite/pom.xml Thu Oct  2 06:22:58 2008
@@ -85,6 +85,20 @@
 
     <plugins>
       <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-eclipse-plugin</artifactId>
+        <configuration>
+          <skip>false</skip>
+          <pde>true</pde>
+          <!-- Workaround for http://jira.codehaus.org/browse/MECLIPSE-94 -->
+          <eclipseProjectDir>..</eclipseProjectDir>
+          <!-- We don't want any sources or javadocs jars -->
+          <downloadSources>false</downloadSources>
+          <downloadJavadocs>false</downloadJavadocs>
+        </configuration>
+      </plugin>
+    
+      <plugin>
         <groupId>org.apache.geronimo.genesis.plugins</groupId>
         <artifactId>tools-maven-plugin</artifactId>
         <executions>