Author: jukka
Date: Mon Dec 31 01:59:20 2007
New Revision: 607708
URL: http://svn.apache.org/viewvc?rev=607708&view=rev
Log:
JCR-1144: Use maven-retrotranslator-plugin instead of a Java 1.4 profile
Modified:
jackrabbit/trunk/jackrabbit-ocm/pom.xml
Modified: jackrabbit/trunk/jackrabbit-ocm/pom.xml
URL: http://svn.apache.org/viewvc/jackrabbit/trunk/jackrabbit-ocm/pom.xml?rev=607708&r1=607707&r2=607708&view=diff
==============================================================================
--- jackrabbit/trunk/jackrabbit-ocm/pom.xml (original)
+++ jackrabbit/trunk/jackrabbit-ocm/pom.xml Mon Dec 31 01:59:20 2007
@@ -61,42 +61,19 @@
<argLine>-Xmx256m</argLine>
</configuration>
</plugin>
+ <plugin>
+ <groupId>org.codehaus.mojo</groupId>
+ <artifactId>retrotranslator-maven-plugin</artifactId>
+ <executions>
+ <execution>
+ <goals>
+ <goal>translate-project</goal>
+ </goals>
+ </execution>
+ </executions>
+ </plugin>
</plugins>
</build>
-
- <!-- ====================================================================== -->
- <!-- P R O F I L E S -->
- <!-- ====================================================================== -->
- <profiles>
- <profile>
- <id>jdk1.4</id>
- <properties>
- <maven.test.skip>true</maven.test.skip>
- </properties>
- <build>
- <plugins>
- <plugin>
- <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>
- <plugin>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <classifier>jdk1.4</classifier>
- </configuration>
- </plugin>
- </plugins>
- </build>
- </profile>
- </profiles>
<!-- ====================================================================== -->
<!-- D E P E N D E N C I E S -->
|