HHH-2863 : isolate cache integration testing
git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14230 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
parent
bec99b7ec3
commit
dd9310207b
|
@ -24,11 +24,6 @@
|
|||
<artifactId>hibernate-core</artifactId>
|
||||
<version>${version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>${groupId}</groupId>
|
||||
<artifactId>hibernate-testing</artifactId>
|
||||
<version>${version}</version>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>org.jboss.cache</groupId>
|
||||
<artifactId>jbosscache-core</artifactId>
|
||||
|
@ -36,24 +31,86 @@
|
|||
<version>[2.0.0.BETA2,)</version>
|
||||
-->
|
||||
<version>2.1.0.BETA1</version>
|
||||
</dependency>
|
||||
</dependency>
|
||||
|
||||
<!-- test dependencies -->
|
||||
<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>
|
||||
</dependencies>
|
||||
|
||||
<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>
|
||||
<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>
|
||||
|
||||
<plugins>
|
||||
<plugin>
|
||||
|
@ -63,97 +120,97 @@
|
|||
<source>1.5</source>
|
||||
<target>1.5</target>
|
||||
</configuration>
|
||||
</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>
|
||||
</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>
|
||||
</plugin>
|
||||
</plugins>
|
||||
</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>
|
||||
</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>
|
||||
</profiles>
|
||||
|
||||
</project>
|
||||
|
|
Loading…
Reference in New Issue