You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by ju...@apache.org on 2007/10/17 18:04:43 UTC

svn commit: r585549 - /jackrabbit/trunk/pom.xml

Author: jukka
Date: Wed Oct 17 09:04:42 2007
New Revision: 585549

URL: http://svn.apache.org/viewvc?rev=585549&view=rev
Log:
JCR-988: Configure the maven build for IDE project generation for IDEA and Eclipse
    - Patch contributed by Marcel May

Modified:
    jackrabbit/trunk/pom.xml

Modified: jackrabbit/trunk/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/pom.xml?rev=585549&r1=585548&r2=585549&view=diff
==============================================================================
--- jackrabbit/trunk/pom.xml (original)
+++ jackrabbit/trunk/pom.xml Wed Oct 17 09:04:42 2007
@@ -119,6 +119,23 @@
           </links>
         </configuration>
       </plugin>
+      <!-- JCR-988: IDE plugins -->
+      <plugin>
+        <!-- http://maven.apache.org/plugins/maven-idea-plugin/ -->
+        <artifactId>maven-idea-plugin</artifactId>
+        <version>2.0</version>
+        <configuration>
+          <downloadSources>true</downloadSources>
+          <jdkLevel>1.4</jdkLevel>
+        </configuration>
+      </plugin>
+      <plugin>
+        <!-- http://maven.apache.org/plugins/maven-eclipse-plugin/ -->
+        <artifactId>maven-eclipse-plugin</artifactId>
+        <configuration>
+          <downloadSources>true</downloadSources>
+        </configuration>
+      </plugin>
     </plugins>
   </build>