You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jackrabbit.apache.org by fm...@apache.org on 2007/09/27 12:37:19 UTC

svn commit: r579970 - /jackrabbit/trunk/contrib/jackrabbit-jcr-mapping/jcr-mapping/pom.xml

Author: fmeschbe
Date: Thu Sep 27 03:37:19 2007
New Revision: 579970

URL: http://svn.apache.org/viewvc?rev=579970&view=rev
Log:
jcr-1144 Investigate ways to compile the refactored jcr-mapping for Java 1.4

Modified:
    jackrabbit/trunk/contrib/jackrabbit-jcr-mapping/jcr-mapping/pom.xml

Modified: jackrabbit/trunk/contrib/jackrabbit-jcr-mapping/jcr-mapping/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/contrib/jackrabbit-jcr-mapping/jcr-mapping/pom.xml?rev=579970&r1=579969&r2=579970&view=diff
==============================================================================
--- jackrabbit/trunk/contrib/jackrabbit-jcr-mapping/jcr-mapping/pom.xml (original)
+++ jackrabbit/trunk/contrib/jackrabbit-jcr-mapping/jcr-mapping/pom.xml Thu Sep 27 03:37:19 2007
@@ -69,6 +69,35 @@
 	</build>
 
 	<!-- ====================================================================== -->
+	<!-- P R O F I L E S                                                        -->
+	<!-- ====================================================================== -->
+    <profiles>
+        <profile>
+            <id>jdk1.4</id>
+            <build>
+                <finalName>
+                    ${artifactId}-jdk1.4
+                </finalName>
+                <plugins>
+                    <plugin>
+                        <inherited>true</inherited>
+                        <artifactId>maven-compiler-plugin</artifactId>
+                        <configuration>
+                            <excludes>
+                                <exclude>
+                                    org/apache/jackrabbit/ocm/mapper/impl/annotation/**
+                                </exclude>
+                            </excludes>
+                            <target>1.4</target>
+                            <source>1.4</source>
+                        </configuration>
+                    </plugin>
+                </plugins>
+            </build>
+        </profile>
+    </profiles>
+
+	<!-- ====================================================================== -->
 	<!-- D E P E N D E N C I E S                                                -->
 	<!-- ====================================================================== -->
 	<dependencies>