2007-06-29 15:23:45 -04:00
|
|
|
<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/xsd/maven-4.0.0.xsd">
|
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2007-07-16 23:31:57 -04:00
|
|
|
|
2007-06-29 15:23:45 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.hibernate</groupId>
|
2007-07-16 23:31:57 -04:00
|
|
|
<artifactId>hibernate-core-parent</artifactId>
|
|
|
|
<version>1</version>
|
2007-06-29 15:23:45 -04:00
|
|
|
</parent>
|
2007-07-16 23:31:57 -04:00
|
|
|
|
2007-06-29 15:23:45 -04:00
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-jbosscache2</artifactId>
|
2007-07-16 23:31:57 -04:00
|
|
|
<version>3.3.0-SNAPSHOT</version>
|
|
|
|
<packaging>jar</packaging>
|
2007-06-29 15:23:45 -04:00
|
|
|
|
2007-07-16 23:31:57 -04:00
|
|
|
<name>Hibernate JBossCache2.x Integration</name>
|
2007-06-29 15:23:45 -04:00
|
|
|
<description>Integration of Hibernate with JBossCache (based on JBossCache2.x APIs)</description>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>${groupId}</groupId>
|
2007-07-16 23:31:57 -04:00
|
|
|
<artifactId>hibernate-core</artifactId>
|
|
|
|
<version>${version}</version>
|
2007-06-29 15:23:45 -04:00
|
|
|
</dependency>
|
2007-10-18 16:08:50 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.cache</groupId>
|
|
|
|
<artifactId>jbosscache-core</artifactId>
|
2007-07-16 23:31:57 -04:00
|
|
|
<!-- I'd prefer this, at least until we get a GA...
|
2007-06-29 15:23:45 -04:00
|
|
|
<version>[2.0.0.BETA2,)</version>
|
|
|
|
-->
|
2007-10-18 16:08:50 -04:00
|
|
|
<version>2.1.0.BETA1</version>
|
2007-12-07 15:42:12 -05:00
|
|
|
</dependency>
|
|
|
|
|
2007-10-18 16:08:50 -04:00
|
|
|
<!-- test dependencies -->
|
2007-12-07 15:42:12 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>${groupId}</groupId>
|
|
|
|
<artifactId>hibernate-testing</artifactId>
|
|
|
|
<version>${version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>hsqldb</groupId>
|
|
|
|
<artifactId>hsqldb</artifactId>
|
|
|
|
<version>1.8.0.2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging</artifactId>
|
|
|
|
<version>99.0-does-not-exist</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>commons-logging</groupId>
|
|
|
|
<artifactId>commons-logging-api</artifactId>
|
|
|
|
<version>99.0-does-not-exist</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>jcl104-over-slf4j</artifactId>
|
|
|
|
<version>1.4.2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<version>1.4.2</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<version>1.2.14</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<!-- these are optional on core :( and needed for testing -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javassist</groupId>
|
|
|
|
<artifactId>javassist</artifactId>
|
|
|
|
<version>3.4.GA</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cglib</groupId>
|
|
|
|
<artifactId>cglib</artifactId>
|
|
|
|
<version>2.1_3</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>asm</groupId>
|
|
|
|
<artifactId>asm-attrs</artifactId>
|
|
|
|
<version>1.5.3</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2007-06-29 15:23:45 -04:00
|
|
|
</dependencies>
|
|
|
|
|
2007-12-07 15:42:12 -05:00
|
|
|
<build>
|
|
|
|
<testResources>
|
|
|
|
<testResource>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
<directory>src/test/java</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**/*.xml</include>
|
|
|
|
</includes>
|
|
|
|
</testResource>
|
|
|
|
<testResource>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>src/test/resources</directory>
|
|
|
|
</testResource>
|
|
|
|
</testResources>
|
2007-10-18 16:08:50 -04:00
|
|
|
|
2007-06-29 15:23:45 -04:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.5</source>
|
|
|
|
<target>1.5</target>
|
|
|
|
</configuration>
|
2007-12-07 15:42:12 -05:00
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jboss.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-test-ext-plugin</artifactId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>extend</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<systemProperties>
|
|
|
|
<property>
|
|
|
|
<name>hibernate.test.validatefailureexpected</name>
|
|
|
|
<value>true</value>
|
|
|
|
</property>
|
|
|
|
<!-- If you find the testsuite runs very slowly, there
|
|
|
|
may be problems with multicast on the interface
|
|
|
|
JGroups uses by default. You can try to resolve
|
|
|
|
this by uncommenting this property and setting the
|
|
|
|
value to an interface where you know multicast works
|
|
|
|
<property>
|
|
|
|
<name>jgroups.bind_addr</name>
|
|
|
|
<value>192.168.0.1</value>
|
|
|
|
</property>
|
|
|
|
-->
|
|
|
|
<!-- There are problems with multicast and IPv6 on some
|
|
|
|
OS/JDK combos, so we tell Java to use IPv4. If you
|
|
|
|
have problems with multicast when running the tests
|
|
|
|
you can try setting this to 'false', although typically
|
|
|
|
that won't be helpful.
|
|
|
|
-->
|
|
|
|
<property>
|
|
|
|
<name>java.net.preferIPv4Stack</name>
|
|
|
|
<value>true</value>
|
|
|
|
</property>
|
|
|
|
</systemProperties>
|
|
|
|
<!-- If all else fails and you cannot get multicast working
|
|
|
|
properly for the testsuite, uncomment this to disable the
|
|
|
|
tests.
|
|
|
|
<skipExec>true</skipExec>
|
|
|
|
-->
|
|
|
|
</configuration>
|
2007-10-18 16:08:50 -04:00
|
|
|
</plugin>
|
2007-06-29 15:23:45 -04:00
|
|
|
</plugins>
|
2007-12-07 15:42:12 -05:00
|
|
|
</build>
|
|
|
|
|
|
|
|
<profiles>
|
|
|
|
<!-- HSQLDB is the default (eventually move to H2) -->
|
|
|
|
<profile>
|
|
|
|
<id>hsqldb</id>
|
|
|
|
<activation>
|
|
|
|
<activeByDefault>true</activeByDefault>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>hsqldb</groupId>
|
|
|
|
<artifactId>hsqldb</artifactId>
|
|
|
|
<version>1.8.0.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
<artifactId>slf4j-log4j12</artifactId>
|
|
|
|
<version>1.4.2</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>log4j</groupId>
|
|
|
|
<artifactId>log4j</artifactId>
|
|
|
|
<version>1.2.14</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>cglib</groupId>
|
|
|
|
<artifactId>cglib</artifactId>
|
|
|
|
<version>2.1_3</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
<properties>
|
|
|
|
<db.dialect>org.hibernate.dialect.HSQLDialect</db.dialect>
|
|
|
|
<jdbc.driver>org.hsqldb.jdbcDriver</jdbc.driver>
|
|
|
|
<jdbc.url>jdbc:hsqldb:target/test/db/hsqldb/hibernate</jdbc.url>
|
|
|
|
<jdbc.user>sa</jdbc.user>
|
|
|
|
<jdbc.pass/>
|
|
|
|
<jdbc.isolation/>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
2007-10-18 16:08:50 -04:00
|
|
|
</profiles>
|
2007-06-29 15:23:45 -04:00
|
|
|
|
2007-07-16 23:31:57 -04:00
|
|
|
</project>
|