From: <fg...@us...> - 2010-08-25 08:37:50
|
Revision: 2893 http://openutils.svn.sourceforge.net/openutils/?rev=2893&view=rev Author: fgiust Date: 2010-08-25 08:37:44 +0000 (Wed, 25 Aug 2010) Log Message: ----------- CRIT-19 add a property for jackrabbit/jcr version for testing Modified Paths: -------------- trunk/openutils-mgnlcriteria/pom.xml Modified: trunk/openutils-mgnlcriteria/pom.xml =================================================================== --- trunk/openutils-mgnlcriteria/pom.xml 2010-08-25 08:37:13 UTC (rev 2892) +++ trunk/openutils-mgnlcriteria/pom.xml 2010-08-25 08:37:44 UTC (rev 2893) @@ -1,4 +1,5 @@ -<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> +<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>net.sourceforge.openutils</groupId> @@ -113,6 +114,21 @@ <version>2.0</version> </dependency> <dependency> + <groupId>org.apache.jackrabbit</groupId> + <artifactId>jackrabbit-core</artifactId> + <version>${jackrabbit.version}</version> + <exclusions> + <exclusion> + <groupId>org.apache.poi</groupId> + <artifactId>poi</artifactId> + </exclusion> + <exclusion> + <groupId>org.apache.poi</groupId> + <artifactId>poi-scratchpad</artifactId> + </exclusion> + </exclusions> + </dependency> + <dependency> <groupId>info.magnolia</groupId> <artifactId>magnolia-core</artifactId> <classifier>tests</classifier> @@ -148,5 +164,11 @@ </repositories> <properties> <magnolia.version>4.3.6</magnolia.version> + <jackrabbit.version>1.6.2</jackrabbit.version> + <jcr.version>1.0</jcr.version> </properties> + <!-- test running maven with + -Djcr.version=2.0 -Djackrabbit.version=2.0.0 + -Djcr.version=2.0 -Djackrabbit.version=2.1.0 + --> </project> \ No newline at end of file This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |