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:14:12 UTC

svn commit: r701114 - /directory/studio/trunk/repository/pom.xml

Author: pamarcelot
Date: Thu Oct  2 06:14:12 2008
New Revision: 701114

URL: http://svn.apache.org/viewvc?rev=701114&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/repository/pom.xml

Modified: directory/studio/trunk/repository/pom.xml
URL: http://svn.apache.org/viewvc/directory/studio/trunk/repository/pom.xml?rev=701114&r1=701113&r2=701114&view=diff
==============================================================================
--- directory/studio/trunk/repository/pom.xml (original)
+++ directory/studio/trunk/repository/pom.xml Thu Oct  2 06:14:12 2008
@@ -34,6 +34,24 @@
     <name>Apache Software Foundation</name>
     <url>http://www.apache.org</url>
   </organization>
+  
+  <build>
+    <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>
+    </plugins>
+  </build>
 
   <dependencies>
     <!-- Apache Directory Studio launchers dependencies -->