[maven-release-plugin] prepare release hibernate-3.3.0.CR1

git-svn-id: https://svn.jboss.org/repos/hibernate/core/trunk@14466 1b8cb986-b30d-0410-93ca-fae66ebed9b2
This commit is contained in:
Steve Ebersole 2008-03-18 14:23:51 +00:00
parent c7129349a7
commit e889bd0de1
13 changed files with 1183 additions and 1137 deletions

View File

@ -1,97 +1,101 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
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>
<modelVersion>4.0.0</modelVersion> <parent>
<groupId>org.hibernate</groupId>
<parent> <artifactId>hibernate-core-parent</artifactId>
<groupId>org.hibernate</groupId> <version>2</version>
<artifactId>hibernate-core-parent</artifactId> </parent>
<version>2</version>
</parent> <groupId>org.hibernate</groupId>
<artifactId>hibernate-ehcache</artifactId>
<groupId>org.hibernate</groupId> <version>3.3.0.CR1</version>
<artifactId>hibernate-ehcache</artifactId> <packaging>jar</packaging>
<version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging> <name>Hibernate Ehcache Integration</name>
<description>Integration of Hibernate with Ehcache</description>
<name>Hibernate Ehcache Integration</name>
<description>Integration of Hibernate with Ehcache</description> <dependencies>
<dependency>
<dependencies> <groupId>${groupId}</groupId>
<dependency> <artifactId>hibernate-core</artifactId>
<groupId>${groupId}</groupId> <version>${version}</version>
<artifactId>hibernate-core</artifactId> </dependency>
<version>${version}</version> <dependency>
</dependency> <groupId>net.sf.ehcache</groupId>
<dependency> <artifactId>ehcache</artifactId>
<groupId>net.sf.ehcache</groupId> <version>1.2.3</version>
<artifactId>ehcache</artifactId> </dependency>
<version>1.2.3</version>
</dependency> <!-- testing deps -->
<dependency>
<!-- testing deps --> <groupId>${groupId}</groupId>
<dependency> <artifactId>hibernate-testing</artifactId>
<groupId>${groupId}</groupId> <version>${version}</version>
<artifactId>hibernate-testing</artifactId> <scope>test</scope>
<version>${version}</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>hsqldb</groupId>
<dependency> <artifactId>hsqldb</artifactId>
<groupId>hsqldb</groupId> <version>1.8.0.2</version>
<artifactId>hsqldb</artifactId> <scope>test</scope>
<version>1.8.0.2</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>commons-logging</groupId>
<dependency> <artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId> <version>99.0-does-not-exist</version>
<artifactId>commons-logging</artifactId> <scope>test</scope>
<version>99.0-does-not-exist</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>commons-logging</groupId>
<dependency> <artifactId>commons-logging-api</artifactId>
<groupId>commons-logging</groupId> <version>99.0-does-not-exist</version>
<artifactId>commons-logging-api</artifactId> <scope>test</scope>
<version>99.0-does-not-exist</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>org.slf4j</groupId>
<dependency> <artifactId>jcl104-over-slf4j</artifactId>
<groupId>org.slf4j</groupId> <version>1.4.2</version>
<artifactId>jcl104-over-slf4j</artifactId> <scope>test</scope>
<version>1.4.2</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>org.slf4j</groupId>
<dependency> <artifactId>slf4j-log4j12</artifactId>
<groupId>org.slf4j</groupId> <version>1.4.2</version>
<artifactId>slf4j-log4j12</artifactId> <scope>test</scope>
<version>1.4.2</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>log4j</groupId>
<dependency> <artifactId>log4j</artifactId>
<groupId>log4j</groupId> <version>1.2.14</version>
<artifactId>log4j</artifactId> <scope>test</scope>
<version>1.2.14</version> </dependency>
<scope>test</scope> <!-- these are optional on core... :( -->
</dependency> <dependency>
<!-- these are optional on core... :( --> <groupId>javassist</groupId>
<dependency> <artifactId>javassist</artifactId>
<groupId>javassist</groupId> <version>3.4.GA</version>
<artifactId>javassist</artifactId> <scope>test</scope>
<version>3.4.GA</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>cglib</groupId>
<dependency> <artifactId>cglib</artifactId>
<groupId>cglib</groupId> <version>2.1_3</version>
<artifactId>cglib</artifactId> <scope>test</scope>
<version>2.1_3</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>asm</groupId>
<dependency> <artifactId>asm-attrs</artifactId>
<groupId>asm</groupId> <version>1.5.3</version>
<artifactId>asm-attrs</artifactId> <scope>test</scope>
<version>1.5.3</version> </dependency>
<scope>test</scope> </dependencies>
</dependency>
</dependencies>
<scm>
</project> <connection>scm:svn:http://anonsvn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-ehcache</developerConnection>
<url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-ehcache</url>
</scm>
</project>

View File

@ -1,128 +1,132 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
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>
<modelVersion>4.0.0</modelVersion> <parent>
<groupId>org.hibernate</groupId>
<parent> <artifactId>hibernate-core-parent</artifactId>
<groupId>org.hibernate</groupId> <version>2</version>
<artifactId>hibernate-core-parent</artifactId> </parent>
<version>2</version>
</parent> <groupId>org.hibernate</groupId>
<artifactId>hibernate-jbosscache</artifactId>
<groupId>org.hibernate</groupId> <version>3.3.0.CR1</version>
<artifactId>hibernate-jbosscache</artifactId> <packaging>jar</packaging>
<version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging> <name>Hibernate JBossCache Integration</name>
<description>Integration of Hibernate with JBossCache (based on JBossCache1.x APIs)</description>
<name>Hibernate JBossCache Integration</name>
<description>Integration of Hibernate with JBossCache (based on JBossCache1.x APIs)</description> <dependencies>
<dependency>
<dependencies> <groupId>${groupId}</groupId>
<dependency> <artifactId>hibernate-core</artifactId>
<groupId>${groupId}</groupId> <version>${version}</version>
<artifactId>hibernate-core</artifactId> </dependency>
<version>${version}</version> <dependency>
</dependency> <groupId>jboss</groupId>
<dependency> <artifactId>jboss-cache</artifactId>
<groupId>jboss</groupId> <version>1.4.1.GA</version>
<artifactId>jboss-cache</artifactId> </dependency>
<version>1.4.1.GA</version> <!-- jboss-cache (the one from the jboss repo, anyway) does not properly define its dependencies -->
</dependency> <dependency>
<!-- jboss-cache (the one from the jboss repo, anyway) does not properly define its dependencies --> <groupId>jboss</groupId>
<dependency> <artifactId>jboss-system</artifactId>
<groupId>jboss</groupId> <version>4.0.2</version>
<artifactId>jboss-system</artifactId> </dependency>
<version>4.0.2</version> <dependency>
</dependency> <groupId>jboss</groupId>
<dependency> <artifactId>jboss-common</artifactId>
<groupId>jboss</groupId> <version>4.0.2</version>
<artifactId>jboss-common</artifactId> </dependency>
<version>4.0.2</version> <dependency>
</dependency> <groupId>jboss</groupId>
<dependency> <artifactId>jboss-minimal</artifactId>
<groupId>jboss</groupId> <version>4.0.2</version>
<artifactId>jboss-minimal</artifactId> </dependency>
<version>4.0.2</version> <dependency>
</dependency> <groupId>jboss</groupId>
<dependency> <artifactId>jboss-j2se</artifactId>
<groupId>jboss</groupId> <version>200504122039</version>
<artifactId>jboss-j2se</artifactId> </dependency>
<version>200504122039</version> <dependency>
</dependency> <groupId>concurrent</groupId>
<dependency> <artifactId>concurrent</artifactId>
<groupId>concurrent</groupId> <version>1.3.4</version>
<artifactId>concurrent</artifactId> </dependency>
<version>1.3.4</version> <dependency>
</dependency> <groupId>jgroups</groupId>
<dependency> <artifactId>jgroups-all</artifactId>
<groupId>jgroups</groupId> <version>2.2.7</version>
<artifactId>jgroups-all</artifactId> </dependency>
<version>2.2.7</version>
</dependency> <!-- testing deps -->
<dependency>
<!-- testing deps --> <groupId>${groupId}</groupId>
<dependency> <artifactId>hibernate-testing</artifactId>
<groupId>${groupId}</groupId> <version>${version}</version>
<artifactId>hibernate-testing</artifactId> <scope>test</scope>
<version>${version}</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>hsqldb</groupId>
<dependency> <artifactId>hsqldb</artifactId>
<groupId>hsqldb</groupId> <version>1.8.0.2</version>
<artifactId>hsqldb</artifactId> <scope>test</scope>
<version>1.8.0.2</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>commons-logging</groupId>
<dependency> <artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId> <version>99.0-does-not-exist</version>
<artifactId>commons-logging</artifactId> <scope>test</scope>
<version>99.0-does-not-exist</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>commons-logging</groupId>
<dependency> <artifactId>commons-logging-api</artifactId>
<groupId>commons-logging</groupId> <version>99.0-does-not-exist</version>
<artifactId>commons-logging-api</artifactId> <scope>test</scope>
<version>99.0-does-not-exist</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>org.slf4j</groupId>
<dependency> <artifactId>jcl104-over-slf4j</artifactId>
<groupId>org.slf4j</groupId> <version>1.4.2</version>
<artifactId>jcl104-over-slf4j</artifactId> <scope>test</scope>
<version>1.4.2</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>org.slf4j</groupId>
<dependency> <artifactId>slf4j-log4j12</artifactId>
<groupId>org.slf4j</groupId> <version>1.4.2</version>
<artifactId>slf4j-log4j12</artifactId> <scope>test</scope>
<version>1.4.2</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>log4j</groupId>
<dependency> <artifactId>log4j</artifactId>
<groupId>log4j</groupId> <version>1.2.14</version>
<artifactId>log4j</artifactId> <scope>test</scope>
<version>1.2.14</version> </dependency>
<scope>test</scope> <!-- these are optional on core... :( -->
</dependency> <dependency>
<!-- these are optional on core... :( --> <groupId>javassist</groupId>
<dependency> <artifactId>javassist</artifactId>
<groupId>javassist</groupId> <version>3.4.GA</version>
<artifactId>javassist</artifactId> <scope>test</scope>
<version>3.4.GA</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>cglib</groupId>
<dependency> <artifactId>cglib</artifactId>
<groupId>cglib</groupId> <version>2.1_3</version>
<artifactId>cglib</artifactId> <scope>test</scope>
<version>2.1_3</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>asm</groupId>
<dependency> <artifactId>asm-attrs</artifactId>
<groupId>asm</groupId> <version>1.5.3</version>
<artifactId>asm-attrs</artifactId> <scope>test</scope>
<version>1.5.3</version> </dependency>
<scope>test</scope> </dependencies>
</dependency>
</dependencies>
<scm>
</project> <connection>scm:svn:http://anonsvn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-jbosscache</developerConnection>
<url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-jbosscache</url>
</scm>
</project>

View File

@ -1,208 +1,212 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
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>
<modelVersion>4.0.0</modelVersion> <parent>
<groupId>org.hibernate</groupId>
<parent> <artifactId>hibernate-core-parent</artifactId>
<groupId>org.hibernate</groupId> <version>2</version>
<artifactId>hibernate-core-parent</artifactId> </parent>
<version>2</version>
</parent> <groupId>org.hibernate</groupId>
<artifactId>hibernate-jbosscache2</artifactId>
<groupId>org.hibernate</groupId> <version>3.3.0.CR1</version>
<artifactId>hibernate-jbosscache2</artifactId> <packaging>jar</packaging>
<version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging> <name>Hibernate JBossCache2.x Integration</name>
<description>Integration of Hibernate with JBossCache (based on JBossCache2.x APIs)</description>
<name>Hibernate JBossCache2.x Integration</name>
<description>Integration of Hibernate with JBossCache (based on JBossCache2.x APIs)</description> <dependencies>
<dependency>
<dependencies> <groupId>${groupId}</groupId>
<dependency> <artifactId>hibernate-core</artifactId>
<groupId>${groupId}</groupId> <version>${version}</version>
<artifactId>hibernate-core</artifactId> </dependency>
<version>${version}</version> <dependency>
</dependency> <groupId>org.jboss.cache</groupId>
<dependency> <artifactId>jbosscache-core</artifactId>
<groupId>org.jboss.cache</groupId> <version>2.1.0.CR4</version>
<artifactId>jbosscache-core</artifactId> </dependency>
<version>2.1.0.CR4</version> <!-- TODO Remove once JBC 2.1.0.GA uses JG 2.6.1 -->
</dependency> <dependency>
<!-- TODO Remove once JBC 2.1.0.GA uses JG 2.6.1 --> <groupId>jgroups</groupId>
<dependency> <artifactId>jgroups</artifactId>
<groupId>jgroups</groupId> <version>2.6.1</version>
<artifactId>jgroups</artifactId> </dependency>
<version>2.6.1</version>
</dependency> <!-- test dependencies -->
<dependency>
<!-- test dependencies --> <groupId>${groupId}</groupId>
<dependency> <artifactId>hibernate-testing</artifactId>
<groupId>${groupId}</groupId> <version>${version}</version>
<artifactId>hibernate-testing</artifactId> <scope>test</scope>
<version>${version}</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>hsqldb</groupId>
<dependency> <artifactId>hsqldb</artifactId>
<groupId>hsqldb</groupId> <version>1.8.0.2</version>
<artifactId>hsqldb</artifactId> <scope>test</scope>
<version>1.8.0.2</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>commons-logging</groupId>
<dependency> <artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId> <version>99.0-does-not-exist</version>
<artifactId>commons-logging</artifactId> <scope>test</scope>
<version>99.0-does-not-exist</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>commons-logging</groupId>
<dependency> <artifactId>commons-logging-api</artifactId>
<groupId>commons-logging</groupId> <version>99.0-does-not-exist</version>
<artifactId>commons-logging-api</artifactId> <scope>test</scope>
<version>99.0-does-not-exist</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>org.slf4j</groupId>
<dependency> <artifactId>jcl104-over-slf4j</artifactId>
<groupId>org.slf4j</groupId> <version>1.4.2</version>
<artifactId>jcl104-over-slf4j</artifactId> <scope>test</scope>
<version>1.4.2</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>org.slf4j</groupId>
<dependency> <artifactId>slf4j-log4j12</artifactId>
<groupId>org.slf4j</groupId> <version>1.4.2</version>
<artifactId>slf4j-log4j12</artifactId> <scope>test</scope>
<version>1.4.2</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>log4j</groupId>
<dependency> <artifactId>log4j</artifactId>
<groupId>log4j</groupId> <version>1.2.14</version>
<artifactId>log4j</artifactId> <scope>test</scope>
<version>1.2.14</version> </dependency>
<scope>test</scope> <!-- these are optional on core :( and needed for testing -->
</dependency> <dependency>
<!-- these are optional on core :( and needed for testing --> <groupId>javassist</groupId>
<dependency> <artifactId>javassist</artifactId>
<groupId>javassist</groupId> <version>3.4.GA</version>
<artifactId>javassist</artifactId> <scope>test</scope>
<version>3.4.GA</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>cglib</groupId>
<dependency> <artifactId>cglib</artifactId>
<groupId>cglib</groupId> <version>2.1_3</version>
<artifactId>cglib</artifactId> <scope>test</scope>
<version>2.1_3</version> </dependency>
<scope>test</scope> <dependency>
</dependency> <groupId>asm</groupId>
<dependency> <artifactId>asm-attrs</artifactId>
<groupId>asm</groupId> <version>1.5.3</version>
<artifactId>asm-attrs</artifactId> <scope>test</scope>
<version>1.5.3</version> </dependency>
<scope>test</scope> </dependencies>
</dependency>
</dependencies> <build>
<testResources>
<build> <testResource>
<testResources> <filtering>false</filtering>
<testResource> <directory>src/test/java</directory>
<filtering>false</filtering> <includes>
<directory>src/test/java</directory> <include>**/*.xml</include>
<includes> </includes>
<include>**/*.xml</include> </testResource>
</includes> <testResource>
</testResource> <filtering>true</filtering>
<testResource> <directory>src/test/resources</directory>
<filtering>true</filtering> </testResource>
<directory>src/test/resources</directory> </testResources>
</testResource>
</testResources> <plugins>
<plugin>
<plugins> <groupId>org.apache.maven.plugins</groupId>
<plugin> <artifactId>maven-compiler-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId> <configuration>
<artifactId>maven-compiler-plugin</artifactId> <source>1.5</source>
<configuration> <target>1.5</target>
<source>1.5</source> </configuration>
<target>1.5</target> </plugin>
</configuration> <plugin>
</plugin> <groupId>org.apache.maven.plugins</groupId>
<plugin> <artifactId>maven-surefire-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId> <configuration>
<artifactId>maven-surefire-plugin</artifactId> <excludes>
<configuration> <!-- Skip a long-running test of a prototype class -->
<excludes> <exclude>**/ClusteredConcurrentTimestampRegionTestCase.java</exclude>
<!-- Skip a long-running test of a prototype class --> </excludes>
<exclude>**/ClusteredConcurrentTimestampRegionTestCase.java</exclude> <systemProperties>
</excludes> <property>
<systemProperties> <name>hibernate.test.validatefailureexpected</name>
<property> <value>true</value>
<name>hibernate.test.validatefailureexpected</name> </property>
<value>true</value> <property>
</property> <name>jgroups.bind_addr</name>
<property> <value>${jgroups.bind_addr}</value>
<name>jgroups.bind_addr</name> </property>
<value>${jgroups.bind_addr}</value> <!-- There are problems with multicast and IPv6 on some
</property> OS/JDK combos, so we tell Java to use IPv4. If you
<!-- There are problems with multicast and IPv6 on some have problems with multicast when running the tests
OS/JDK combos, so we tell Java to use IPv4. If you you can try setting this to 'false', although typically
have problems with multicast when running the tests that won't be helpful.
you can try setting this to 'false', although typically -->
that won't be helpful. <property>
--> <name>java.net.preferIPv4Stack</name>
<property> <value>true</value>
<name>java.net.preferIPv4Stack</name> </property>
<value>true</value> <!-- Tell JGroups to only wait a short time for PING
</property> responses before determining coordinator. Speeds cluster
<!-- Tell JGroups to only wait a short time for PING formation during integration tests. (This is too
responses before determining coordinator. Speeds cluster low a value for a real system; only use for tests.)
formation during integration tests. (This is too -->
low a value for a real system; only use for tests.) <property>
--> <name>jgroups.ping.timeout</name>
<property> <value>500</value>
<name>jgroups.ping.timeout</name> </property>
<value>500</value> <!-- Tell JGroups to only require one PING response
</property> before determining coordinator. Speeds cluster
<!-- Tell JGroups to only require one PING response formation during integration tests. (This is too
before determining coordinator. Speeds cluster low a value for a real system; only use for tests.)
formation during integration tests. (This is too -->
low a value for a real system; only use for tests.) <property>
--> <name>jgroups.ping.num_initial_members</name>
<property> <value>1</value>
<name>jgroups.ping.num_initial_members</name> </property>
<value>1</value> <!-- Disable the JGroups message bundling feature
</property> to speed tests and avoid FLUSH issue -->
<!-- Disable the JGroups message bundling feature <property>
to speed tests and avoid FLUSH issue --> <name>jgroups.udp.enable_bundling</name>
<property> <value>false</value>
<name>jgroups.udp.enable_bundling</name> </property>
<value>false</value> </systemProperties>
</property> <skipExec>${skipUnitTests}</skipExec>
</systemProperties> </configuration>
<skipExec>${skipUnitTests}</skipExec> </plugin>
</configuration> </plugins>
</plugin> </build>
</plugins>
</build> <properties>
<skipUnitTests>true</skipUnitTests>
<properties> <!--
<skipUnitTests>true</skipUnitTests> Following is the default jgroups mcast address. If you find the testsuite runs very slowly, there
<!-- may be problems with multicast on the interface JGroups uses by default on your machine. You can
Following is the default jgroups mcast address. If you find the testsuite runs very slowly, there try to resolve setting 'jgroups.bind_addr' as a system-property to the jvm launching maven and
may be problems with multicast on the interface JGroups uses by default on your machine. You can setting the value to an interface where you know multicast works
try to resolve setting 'jgroups.bind_addr' as a system-property to the jvm launching maven and -->
setting the value to an interface where you know multicast works <jgroups.bind_addr>127.0.0.1</jgroups.bind_addr>
--> </properties>
<jgroups.bind_addr>127.0.0.1</jgroups.bind_addr>
</properties> <profiles>
<profile>
<profiles> <id>test</id>
<profile> <activation>
<id>test</id> <activeByDefault>false</activeByDefault>
<activation> </activation>
<activeByDefault>false</activeByDefault> <properties>
</activation> <skipUnitTests>false</skipUnitTests>
<properties> </properties>
<skipUnitTests>false</skipUnitTests> </profile>
</properties> </profiles>
</profile>
</profiles>
<scm>
</project> <connection>scm:svn:http://anonsvn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-jbosscache2</developerConnection>
<url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-jbosscache2</url>
</scm>
</project>

View File

@ -1,34 +1,38 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
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>
<modelVersion>4.0.0</modelVersion> <parent>
<groupId>org.hibernate</groupId>
<parent> <artifactId>hibernate-core-parent</artifactId>
<groupId>org.hibernate</groupId> <version>2</version>
<artifactId>hibernate-core-parent</artifactId> </parent>
<version>2</version>
</parent> <groupId>org.hibernate</groupId>
<artifactId>hibernate-oscache</artifactId>
<groupId>org.hibernate</groupId> <version>3.3.0.CR1</version>
<artifactId>hibernate-oscache</artifactId> <packaging>jar</packaging>
<version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging> <name>Hibernate OSCache Integration</name>
<description>Integration of Hibernate with OSCache</description>
<name>Hibernate OSCache Integration</name>
<description>Integration of Hibernate with OSCache</description> <dependencies>
<dependency>
<dependencies> <groupId>${groupId}</groupId>
<dependency> <artifactId>hibernate-core</artifactId>
<groupId>${groupId}</groupId> <version>${version}</version>
<artifactId>hibernate-core</artifactId> </dependency>
<version>${version}</version> <dependency>
</dependency> <groupId>opensymphony</groupId>
<dependency> <artifactId>oscache</artifactId>
<groupId>opensymphony</groupId> <version>2.1</version>
<artifactId>oscache</artifactId> </dependency>
<version>2.1</version> </dependencies>
</dependency>
</dependencies>
<scm>
</project> <connection>scm:svn:http://anonsvn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-oscache</developerConnection>
<url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-oscache</url>
</scm>
</project>

View File

@ -1,34 +1,38 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
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>
<modelVersion>4.0.0</modelVersion> <parent>
<groupId>org.hibernate</groupId>
<parent> <artifactId>hibernate-core-parent</artifactId>
<groupId>org.hibernate</groupId> <version>2</version>
<artifactId>hibernate-core-parent</artifactId> </parent>
<version>2</version>
</parent> <groupId>org.hibernate</groupId>
<artifactId>hibernate-swarmcache</artifactId>
<groupId>org.hibernate</groupId> <version>3.3.0.CR1</version>
<artifactId>hibernate-swarmcache</artifactId> <packaging>jar</packaging>
<version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging> <name>Hibernate SwarmCache Integration</name>
<description>Integration of Hibernate with SwarmCache</description>
<name>Hibernate SwarmCache Integration</name>
<description>Integration of Hibernate with SwarmCache</description> <dependencies>
<dependency>
<dependencies> <groupId>${groupId}</groupId>
<dependency> <artifactId>hibernate-core</artifactId>
<groupId>${groupId}</groupId> <version>${version}</version>
<artifactId>hibernate-core</artifactId> </dependency>
<version>${version}</version> <dependency>
</dependency> <groupId>swarmcache</groupId>
<dependency> <artifactId>swarmcache</artifactId>
<groupId>swarmcache</groupId> <version>1.0RC2</version>
<artifactId>swarmcache</artifactId> </dependency>
<version>1.0RC2</version> </dependencies>
</dependency>
</dependencies>
<scm>
</project> <connection>scm:svn:http://anonsvn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-swarmcache</developerConnection>
<url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-swarmcache</url>
</scm>
</project>

View File

@ -1,34 +1,38 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
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>
<modelVersion>4.0.0</modelVersion> <parent>
<groupId>org.hibernate</groupId>
<parent> <artifactId>hibernate-core-parent</artifactId>
<groupId>org.hibernate</groupId> <version>2</version>
<artifactId>hibernate-core-parent</artifactId> </parent>
<version>2</version>
</parent> <groupId>org.hibernate</groupId>
<artifactId>hibernate-c3p0</artifactId>
<groupId>org.hibernate</groupId> <version>3.3.0.CR1</version>
<artifactId>hibernate-c3p0</artifactId> <packaging>jar</packaging>
<version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging> <name>Hibernate C3P0 ConnectionProvider</name>
<description>C3P0-based implementation of the Hibernate ConnectionProvder contract</description>
<name>Hibernate C3P0 ConnectionProvider</name>
<description>C3P0-based implementation of the Hibernate ConnectionProvder contract</description> <dependencies>
<dependency>
<dependencies> <groupId>${groupId}</groupId>
<dependency> <artifactId>hibernate-core</artifactId>
<groupId>${groupId}</groupId> <version>${version}</version>
<artifactId>hibernate-core</artifactId> </dependency>
<version>${version}</version> <dependency>
</dependency> <groupId>c3p0</groupId>
<dependency> <artifactId>c3p0</artifactId>
<groupId>c3p0</groupId> <version>0.9.1</version>
<artifactId>c3p0</artifactId> </dependency>
<version>0.9.1</version> </dependencies>
</dependency>
</dependencies>
<scm>
</project> <connection>scm:svn:http://anonsvn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-c3p0</developerConnection>
<url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-c3p0</url>
</scm>
</project>

View File

@ -1,34 +1,38 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
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>
<modelVersion>4.0.0</modelVersion> <parent>
<groupId>org.hibernate</groupId>
<parent> <artifactId>hibernate-core-parent</artifactId>
<groupId>org.hibernate</groupId> <version>2</version>
<artifactId>hibernate-core-parent</artifactId> </parent>
<version>2</version>
</parent> <groupId>org.hibernate</groupId>
<artifactId>hibernate-proxool</artifactId>
<groupId>org.hibernate</groupId> <version>3.3.0.CR1</version>
<artifactId>hibernate-proxool</artifactId> <packaging>jar</packaging>
<version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging> <name>Hibernate Proxool ConnectionProvider</name>
<description>Proxool-based implementation of the Hibernate ConnectionProvder contract</description>
<name>Hibernate Proxool ConnectionProvider</name>
<description>Proxool-based implementation of the Hibernate ConnectionProvder contract</description> <dependencies>
<dependency>
<dependencies> <groupId>${groupId}</groupId>
<dependency> <artifactId>hibernate-core</artifactId>
<groupId>${groupId}</groupId> <version>${version}</version>
<artifactId>hibernate-core</artifactId> </dependency>
<version>${version}</version> <dependency>
</dependency> <groupId>proxool</groupId>
<dependency> <artifactId>proxool</artifactId>
<groupId>proxool</groupId> <version>0.8.3</version>
<artifactId>proxool</artifactId> </dependency>
<version>0.8.3</version> </dependencies>
</dependency>
</dependencies>
<scm>
</project> <connection>scm:svn:http://anonsvn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-proxool</developerConnection>
<url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-proxool</url>
</scm>
</project>

View File

@ -1,6 +1,4 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
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> <modelVersion>4.0.0</modelVersion>
@ -12,7 +10,7 @@
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-core</artifactId> <artifactId>hibernate-core</artifactId>
<version>3.3.0-SNAPSHOT</version> <version>3.3.0.CR1</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>Hibernate Core</name> <name>Hibernate Core</name>
@ -144,4 +142,10 @@
<antlrPluginVersion>2.1</antlrPluginVersion> <antlrPluginVersion>2.1</antlrPluginVersion>
</properties> </properties>
</project>
<scm>
<connection>scm:svn:http://anonsvn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-core</developerConnection>
<url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-core</url>
</scm>
</project>

View File

@ -1,6 +1,4 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
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> <modelVersion>4.0.0</modelVersion>
@ -14,7 +12,7 @@
<groupId>org.hibernate</groupId> <groupId>org.hibernate</groupId>
<artifactId>hibernate-eg</artifactId> <artifactId>hibernate-eg</artifactId>
<version>3.3.0-SNAPSHOT</version> <version>3.3.0.CR1</version>
<packaging>jar</packaging> <packaging>jar</packaging>
<name>Hibernate Example</name> <name>Hibernate Example</name>
@ -28,4 +26,10 @@
</dependency> </dependency>
</dependencies> </dependencies>
</project>
<scm>
<connection>scm:svn:http://anonsvn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-eg</developerConnection>
<url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-eg</url>
</scm>
</project>

View File

@ -1,40 +1,44 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
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>
<modelVersion>4.0.0</modelVersion> <parent>
<groupId>org.hibernate</groupId>
<parent> <artifactId>hibernate-core-parent</artifactId>
<groupId>org.hibernate</groupId> <version>2</version>
<artifactId>hibernate-core-parent</artifactId> </parent>
<version>2</version>
</parent> <groupId>org.hibernate</groupId>
<artifactId>hibernate-jmx</artifactId>
<groupId>org.hibernate</groupId> <version>3.3.0.CR1</version>
<artifactId>hibernate-jmx</artifactId> <packaging>jar</packaging>
<version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging> <name>Hibernate JMX Module</name>
<description>Defines Hibernate JMX capabilities</description>
<name>Hibernate JMX Module</name>
<description>Defines Hibernate JMX capabilities</description> <dependencies>
<dependency>
<dependencies> <groupId>${groupId}</groupId>
<dependency> <artifactId>hibernate-core</artifactId>
<groupId>${groupId}</groupId> <version>${version}</version>
<artifactId>hibernate-core</artifactId> </dependency>
<version>${version}</version> <!-- logging setup for the test suite -->
</dependency> <dependency>
<!-- logging setup for the test suite --> <groupId>org.slf4j</groupId>
<dependency> <artifactId>slf4j-log4j12</artifactId>
<groupId>org.slf4j</groupId> <version>1.4.2</version>
<artifactId>slf4j-log4j12</artifactId> </dependency>
<version>1.4.2</version> <dependency>
</dependency> <groupId>log4j</groupId>
<dependency> <artifactId>log4j</artifactId>
<groupId>log4j</groupId> <version>1.2.14</version>
<artifactId>log4j</artifactId> </dependency>
<version>1.2.14</version> </dependencies>
</dependency>
</dependencies>
<scm>
</project> <connection>scm:svn:http://anonsvn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-jmx</developerConnection>
<url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-jmx</url>
</scm>
</project>

216
pom.xml
View File

@ -1,109 +1,107 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
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>
<modelVersion>4.0.0</modelVersion> <parent>
<groupId>org.hibernate</groupId>
<parent> <artifactId>hibernate-core-parent</artifactId>
<groupId>org.hibernate</groupId> <version>2</version>
<artifactId>hibernate-core-parent</artifactId> </parent>
<version>2</version>
</parent> <groupId>org.hibernate</groupId>
<artifactId>hibernate</artifactId>
<groupId>org.hibernate</groupId> <packaging>pom</packaging>
<artifactId>hibernate</artifactId> <version>3.3.0.CR1</version>
<packaging>pom</packaging>
<version>3.3.0-SNAPSHOT</version> <name>Hibernate Core Aggregator</name>
<description>Aggregator of the Hibernate Core modules.</description>
<name>Hibernate Core Aggregator</name> <url>http://hibernate.org</url>
<description>Aggregator of the Hibernate Core modules.</description>
<url>http://hibernate.org</url> <scm>
<connection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1</connection>
<scm> <developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1</developerConnection>
<connection>scm:svn:https://svn.jboss.org/repos/hibernate/core/trunk</connection> <url>https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1</url>
<developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/trunk</developerConnection> </scm>
<url>https://svn.jboss.org/repos/hibernate/core/trunk</url>
</scm> <modules>
<module>core</module>
<modules> <module>cache-ehcache</module>
<module>core</module> <module>cache-jbosscache</module>
<module>cache-ehcache</module> <module>cache-jbosscache2</module>
<module>cache-jbosscache</module> <module>cache-oscache</module>
<module>cache-jbosscache2</module> <module>cache-swarmcache</module>
<module>cache-oscache</module> <module>connection-c3p0</module>
<module>cache-swarmcache</module> <module>connection-proxool</module>
<module>connection-c3p0</module> <module>jmx</module>
<module>connection-proxool</module> <module>testing</module>
<module>jmx</module> <module>testsuite</module>
<module>testing</module> <module>eg</module>
<module>testsuite</module> <!-- Need to scope bytecode providers first
<module>eg</module> <module>bytecode-cglib</module>
<!-- Need to scope bytecode providers first <module>bytecode-javassist</module>
<module>bytecode-cglib</module> -->
<module>bytecode-javassist</module> </modules>
-->
</modules> <build>
<plugins>
<build> <plugin>
<plugins> <groupId>org.apache.maven.plugins</groupId>
<plugin> <artifactId>maven-release-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId> <version>2.0-beta-7</version>
<artifactId>maven-release-plugin</artifactId> <configuration>
<version>2.0-beta-7</version> <autoVersionSubmodules>true</autoVersionSubmodules>
<configuration> </configuration>
<autoVersionSubmodules>true</autoVersionSubmodules> </plugin>
</configuration> </plugins>
</plugin> </build>
</plugins>
</build> <profiles>
<profile>
<profiles> <!--
<profile> A profile used implicitly by the release plugin. Here we use it to enable documentation building
<!-- as well as execution of the assembly plugin (to build the SourceForge dist).
A profile used implicitly by the release plugin. Here we use it to enable documentation building -->
as well as execution of the assembly plugin (to build the SourceForge dist). <id>release</id>
--> <!--
<id>release</id> temporarily disable documentation module
<!-- <modules>
temporarily disable documentation module <module>documentation</module>
<modules> </modules>
<module>documentation</module> -->
</modules> <build>
--> <plugins>
<build> <plugin>
<plugins> <groupId>org.apache.maven.plugins</groupId>
<plugin> <artifactId>maven-assembly-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId> <version>2.2-beta-2</version>
<artifactId>maven-assembly-plugin</artifactId> <!--
<version>2.2-beta-2</version> <executions>
<!-- <execution>
<executions> <id>assemble</id>
<execution> <phase>deploy</phase>
<id>assemble</id> <goals>
<phase>deploy</phase> <goal>single</goal>
<goals> </goals>
<goal>single</goal> </execution>
</goals> </executions>
</execution> -->
</executions> <configuration>
--> <descriptors>
<configuration> <descriptor>src/assembly/dist.xml</descriptor>
<descriptors> <descriptor>src/assembly/hibernate-all.xml</descriptor>
<descriptor>src/assembly/dist.xml</descriptor> </descriptors>
<descriptor>src/assembly/hibernate-all.xml</descriptor> </configuration>
</descriptors> </plugin>
</configuration> </plugins>
</plugin> </build>
</plugins> </profile>
</build>
</profile> <!-- seperate profile for documentation activation -->
<profile>
<!-- seperate profile for documentation activation --> <id>docs</id>
<profile> <modules>
<id>docs</id> <module>documentation</module>
<modules> </modules>
<module>documentation</module> </profile>
</modules> </profiles>
</profile> </project>
</profiles>
</project>

View File

@ -1,48 +1,52 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
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>
<modelVersion>4.0.0</modelVersion> <parent>
<groupId>org.hibernate</groupId>
<parent> <artifactId>hibernate-core-parent</artifactId>
<groupId>org.hibernate</groupId> <version>2</version>
<artifactId>hibernate-core-parent</artifactId> </parent>
<version>2</version>
</parent> <groupId>org.hibernate</groupId>
<artifactId>hibernate-testing</artifactId>
<groupId>org.hibernate</groupId> <version>3.3.0.CR1</version>
<artifactId>hibernate-testing</artifactId> <packaging>jar</packaging>
<version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging> <name>Hibernate Testing</name>
<description>Hibernate JUnit test utilities</description>
<name>Hibernate Testing</name>
<description>Hibernate JUnit test utilities</description> <dependencies>
<dependency>
<dependencies> <groupId>${groupId}</groupId>
<dependency> <artifactId>hibernate-core</artifactId>
<groupId>${groupId}</groupId> <version>${version}</version>
<artifactId>hibernate-core</artifactId> </dependency>
<version>${version}</version> <dependency>
</dependency> <groupId>junit</groupId>
<dependency> <artifactId>junit</artifactId>
<groupId>junit</groupId> <!-- here we need to pull JUnit deps into compile scope, as opposed to the normal test scope -->
<artifactId>junit</artifactId> <version>3.8.1</version>
<!-- here we need to pull JUnit deps into compile scope, as opposed to the normal test scope --> <scope>compile</scope>
<version>3.8.1</version> </dependency>
<scope>compile</scope> </dependencies>
</dependency>
</dependencies> <build>
<resources>
<build> <resource>
<resources> <filtering>false</filtering>
<resource> <directory>src/main/java</directory>
<filtering>false</filtering> <includes>
<directory>src/main/java</directory> <include>**/*.hbm.xml</include>
<includes> </includes>
<include>**/*.hbm.xml</include> </resource>
</includes> </resources>
</resource> </build>
</resources>
</build>
<scm>
</project> <connection>scm:svn:http://anonsvn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-testing</developerConnection>
<url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-testing</url>
</scm>
</project>

View File

@ -1,361 +1,365 @@
<project xmlns="http://maven.apache.org/POM/4.0.0" <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">
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>
<modelVersion>4.0.0</modelVersion> <parent>
<groupId>org.hibernate</groupId>
<parent> <artifactId>hibernate-core-parent</artifactId>
<groupId>org.hibernate</groupId> <version>2</version>
<artifactId>hibernate-core-parent</artifactId> </parent>
<version>2</version>
</parent> <groupId>org.hibernate</groupId>
<artifactId>hibernate-testsuite</artifactId>
<groupId>org.hibernate</groupId> <version>3.3.0.CR1</version>
<artifactId>hibernate-testsuite</artifactId> <packaging>jar</packaging>
<version>3.3.0-SNAPSHOT</version>
<packaging>jar</packaging> <name>Hibernate Testsuite</name>
<description>The testsuite of Hibernate functionality</description>
<name>Hibernate Testsuite</name>
<description>The testsuite of Hibernate functionality</description> <dependencies>
<dependency>
<dependencies> <groupId>${groupId}</groupId>
<dependency> <artifactId>hibernate-core</artifactId>
<groupId>${groupId}</groupId> <version>${version}</version>
<artifactId>hibernate-core</artifactId> </dependency>
<version>${version}</version> <dependency>
</dependency> <groupId>${groupId}</groupId>
<dependency> <artifactId>hibernate-testing</artifactId>
<groupId>${groupId}</groupId> <version>${version}</version>
<artifactId>hibernate-testing</artifactId> </dependency>
<version>${version}</version> <!-- these are optional on core... :( -->
</dependency> <dependency>
<!-- these are optional on core... :( --> <groupId>javassist</groupId>
<dependency> <artifactId>javassist</artifactId>
<groupId>javassist</groupId> <version>3.4.GA</version>
<artifactId>javassist</artifactId> </dependency>
<version>3.4.GA</version> <dependency>
</dependency> <groupId>cglib</groupId>
<dependency> <artifactId>cglib</artifactId>
<groupId>cglib</groupId> <version>2.1_3</version>
<artifactId>cglib</artifactId> </dependency>
<version>2.1_3</version> <dependency>
</dependency> <groupId>asm</groupId>
<dependency> <artifactId>asm-attrs</artifactId>
<groupId>asm</groupId> <version>1.5.3</version>
<artifactId>asm-attrs</artifactId> </dependency>
<version>1.5.3</version> <!-- optional dom4j dependency; needed here for dom4j (de)serialization -->
</dependency> <dependency>
<!-- optional dom4j dependency; needed here for dom4j (de)serialization --> <groupId>jaxen</groupId>
<dependency> <artifactId>jaxen</artifactId>
<groupId>jaxen</groupId> <version>1.1</version>
<artifactId>jaxen</artifactId> </dependency>
<version>1.1</version> <!-- logging setup for the test suite -->
</dependency> <dependency>
<!-- logging setup for the test suite --> <groupId>commons-logging</groupId>
<dependency> <artifactId>commons-logging</artifactId>
<groupId>commons-logging</groupId> <version>99.0-does-not-exist</version>
<artifactId>commons-logging</artifactId> </dependency>
<version>99.0-does-not-exist</version> <dependency>
</dependency> <groupId>commons-logging</groupId>
<dependency> <artifactId>commons-logging-api</artifactId>
<groupId>commons-logging</groupId> <version>99.0-does-not-exist</version>
<artifactId>commons-logging-api</artifactId> </dependency>
<version>99.0-does-not-exist</version> <dependency>
</dependency> <groupId>org.slf4j</groupId>
<dependency> <artifactId>jcl104-over-slf4j</artifactId>
<groupId>org.slf4j</groupId> <version>1.4.2</version>
<artifactId>jcl104-over-slf4j</artifactId> </dependency>
<version>1.4.2</version> <dependency>
</dependency> <groupId>org.slf4j</groupId>
<dependency> <artifactId>slf4j-log4j12</artifactId>
<groupId>org.slf4j</groupId> <version>1.4.2</version>
<artifactId>slf4j-log4j12</artifactId> </dependency>
<version>1.4.2</version> <dependency>
</dependency> <groupId>log4j</groupId>
<dependency> <artifactId>log4j</artifactId>
<groupId>log4j</groupId> <version>1.2.14</version>
<artifactId>log4j</artifactId> </dependency>
<version>1.2.14</version> </dependencies>
</dependency>
</dependencies> <build>
<testResources>
<build> <testResource>
<testResources> <filtering>false</filtering>
<testResource> <directory>src/test/java</directory>
<filtering>false</filtering> <includes>
<directory>src/test/java</directory> <include>**/*.xml</include>
<includes> </includes>
<include>**/*.xml</include> </testResource>
</includes> <testResource>
</testResource> <filtering>true</filtering>
<testResource> <directory>src/test/resources</directory>
<filtering>true</filtering> </testResource>
<directory>src/test/resources</directory> </testResources>
</testResource>
</testResources> <plugins>
<plugin>
<plugins> <groupId>org.apache.maven.plugins</groupId>
<plugin> <artifactId>maven-compiler-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId> <configuration>
<artifactId>maven-compiler-plugin</artifactId> <source>1.5</source>
<configuration> <target>1.5</target>
<source>1.5</source> </configuration>
<target>1.5</target> </plugin>
</configuration> <plugin>
</plugin> <groupId>org.jboss.maven.plugins</groupId>
<plugin> <artifactId>maven-test-ext-plugin</artifactId>
<groupId>org.jboss.maven.plugins</groupId> <version>1.1.0</version>
<artifactId>maven-test-ext-plugin</artifactId> <executions>
<version>1.1.0</version> <execution>
<executions> <goals>
<execution> <goal>extend</goal>
<goals> </goals>
<goal>extend</goal> </execution>
</goals> </executions>
</execution> </plugin>
</executions> <plugin>
</plugin> <groupId>org.apache.maven.plugins</groupId>
<plugin> <artifactId>maven-surefire-plugin</artifactId>
<groupId>org.apache.maven.plugins</groupId> <configuration>
<artifactId>maven-surefire-plugin</artifactId> <systemProperties>
<configuration> <property>
<systemProperties> <name>hibernate.test.validatefailureexpected</name>
<property> <value>true</value>
<name>hibernate.test.validatefailureexpected</name> </property>
<value>true</value> </systemProperties>
</property> </configuration>
</systemProperties> </plugin>
</configuration> </plugins>
</plugin> </build>
</plugins>
</build> <profiles>
<!-- HSQLDB is the default (eventually move to H2) -->
<profiles> <profile>
<!-- HSQLDB is the default (eventually move to H2) --> <id>hsqldb</id>
<profile> <activation>
<id>hsqldb</id> <activeByDefault>true</activeByDefault>
<activation> </activation>
<activeByDefault>true</activeByDefault> <dependencies>
</activation> <dependency>
<dependencies> <groupId>hsqldb</groupId>
<dependency> <artifactId>hsqldb</artifactId>
<groupId>hsqldb</groupId> <version>1.8.0.2</version>
<artifactId>hsqldb</artifactId> </dependency>
<version>1.8.0.2</version> </dependencies>
</dependency> <properties>
</dependencies> <db.dialect>org.hibernate.dialect.HSQLDialect</db.dialect>
<properties> <jdbc.driver>org.hsqldb.jdbcDriver</jdbc.driver>
<db.dialect>org.hibernate.dialect.HSQLDialect</db.dialect> <jdbc.url>jdbc:hsqldb:target/test/db/hsqldb/hibernate</jdbc.url>
<jdbc.driver>org.hsqldb.jdbcDriver</jdbc.driver> <jdbc.user>sa</jdbc.user>
<jdbc.url>jdbc:hsqldb:target/test/db/hsqldb/hibernate</jdbc.url> <jdbc.pass />
<jdbc.user>sa</jdbc.user> <jdbc.isolation />
<jdbc.pass/> </properties>
<jdbc.isolation/> </profile>
</properties>
</profile> <!-- The H2 test envionment -->
<profile>
<!-- The H2 test envionment --> <id>h2</id>
<profile> <dependencies>
<id>h2</id> <dependency>
<dependencies> <groupId>org.h2database</groupId>
<dependency> <artifactId>h2database</artifactId>
<groupId>org.h2database</groupId> <version>1.0.20061217</version>
<artifactId>h2database</artifactId> </dependency>
<version>1.0.20061217</version> </dependencies>
</dependency> <properties>
</dependencies> <db.dialect>org.hibernate.dialect.H2Dialect</db.dialect>
<properties> <jdbc.driver>org.h2.Driver</jdbc.driver>
<db.dialect>org.hibernate.dialect.H2Dialect</db.dialect> <jdbc.url>jdbc:h2:mem:target/test/db/h2/hibernate</jdbc.url>
<jdbc.driver>org.h2.Driver</jdbc.driver> <jdbc.user>sa</jdbc.user>
<jdbc.url>jdbc:h2:mem:target/test/db/h2/hibernate</jdbc.url> <jdbc.pass />
<jdbc.user>sa</jdbc.user> <jdbc.isolation />
<jdbc.pass/> </properties>
<jdbc.isolation/> </profile>
</properties>
</profile> <!--
###################################################################
<!-- Profiles naming db instances in the Red Hat QA/QE lab
###################################################################
Profiles naming db instances in the Red Hat QA/QE lab First, those with OSS drivers
###################################################################
First, those with OSS drivers -->
###################################################################
--> <!-- The MySQL5 test envionment -->
<profile>
<!-- The MySQL5 test envionment --> <id>mysql5</id>
<profile> <dependencies>
<id>mysql5</id> <dependency>
<dependencies> <groupId>mysql</groupId>
<dependency> <artifactId>mysql-connector-java</artifactId>
<groupId>mysql</groupId> <version>5.0.5</version>
<artifactId>mysql-connector-java</artifactId> </dependency>
<version>5.0.5</version> </dependencies>
</dependency> <properties>
</dependencies> <db.dialect>org.hibernate.dialect.MySQL5InnoDBDialect</db.dialect>
<properties> <jdbc.driver>com.mysql.jdbc.Driver</jdbc.driver>
<db.dialect>org.hibernate.dialect.MySQL5InnoDBDialect</db.dialect> <jdbc.url>jdbc:mysql://dev02.qa.atl.jboss.com/cruisecontrol</jdbc.url>
<jdbc.driver>com.mysql.jdbc.Driver</jdbc.driver> <jdbc.user>cruisecontrol</jdbc.user>
<jdbc.url>jdbc:mysql://dev02.qa.atl.jboss.com/cruisecontrol</jdbc.url> <jdbc.pass>cruisecontrol</jdbc.pass>
<jdbc.user>cruisecontrol</jdbc.user> <jdbc.isolation />
<jdbc.pass>cruisecontrol</jdbc.pass> </properties>
<jdbc.isolation/> </profile>
</properties>
</profile> <!-- The PostgreSQL test envionment -->
<profile>
<!-- The PostgreSQL test envionment --> <id>pgsql8</id>
<profile> <dependencies>
<id>pgsql8</id> <dependency>
<dependencies> <groupId>postgresql</groupId>
<dependency> <artifactId>postgresql</artifactId>
<groupId>postgresql</groupId> <version>8.2-504</version>
<artifactId>postgresql</artifactId> <classifier>jdbc3</classifier>
<version>8.2-504</version> </dependency>
<classifier>jdbc3</classifier> </dependencies>
</dependency> <properties>
</dependencies> <db.dialect>org.hibernate.dialect.PostgreSQLDialect</db.dialect>
<properties> <jdbc.driver>org.postgresql.Driver</jdbc.driver>
<db.dialect>org.hibernate.dialect.PostgreSQLDialect</db.dialect> <jdbc.url>jdbc:postgresql://dev01.qa.atl.jboss.com:5432:cruisecontrol</jdbc.url>
<jdbc.driver>org.postgresql.Driver</jdbc.driver> <jdbc.user>cruisecontrol</jdbc.user>
<jdbc.url>jdbc:postgresql://dev01.qa.atl.jboss.com:5432:cruisecontrol</jdbc.url> <jdbc.pass>cruisecontrol</jdbc.pass>
<jdbc.user>cruisecontrol</jdbc.user> <jdbc.isolation />
<jdbc.pass>cruisecontrol</jdbc.pass> </properties>
<jdbc.isolation/> </profile>
</properties>
</profile> <!--
###################################################################
<!-- Then, those with commercial drivers
################################################################### ###################################################################
Then, those with commercial drivers -->
###################################################################
--> <!-- The Oracle9i test envionment -->
<profile>
<!-- The Oracle9i test envionment --> <id>oracle9i</id>
<profile> <dependencies>
<id>oracle9i</id> <dependency>
<dependencies> <groupId>com.oracle</groupId>
<dependency> <artifactId>ojdbc14</artifactId>
<groupId>com.oracle</groupId> <!-- use the 10g drivers which are surprisingly largely bug free -->
<artifactId>ojdbc14</artifactId> <version>10.0.2.0</version>
<!-- use the 10g drivers which are surprisingly largely bug free --> </dependency>
<version>10.0.2.0</version> </dependencies>
</dependency> <properties>
</dependencies> <db.dialect>org.hibernate.dialect.Oracle9iDialect</db.dialect>
<properties> <jdbc.driver>oracle.jdbc.driver.OracleDriver</jdbc.driver>
<db.dialect>org.hibernate.dialect.Oracle9iDialect</db.dialect> <jdbc.url>jdbc:oracle:thin:@dev20.qa.atl.jboss.com:1521:qa</jdbc.url>
<jdbc.driver>oracle.jdbc.driver.OracleDriver</jdbc.driver> <jdbc.user>cruisecontrol</jdbc.user>
<jdbc.url>jdbc:oracle:thin:@dev20.qa.atl.jboss.com:1521:qa</jdbc.url> <jdbc.pass>cruisecontrol</jdbc.pass>
<jdbc.user>cruisecontrol</jdbc.user> <jdbc.isolation />
<jdbc.pass>cruisecontrol</jdbc.pass> </properties>
<jdbc.isolation/> </profile>
</properties>
</profile> <!-- The Oracle10g test envionment -->
<profile>
<!-- The Oracle10g test envionment --> <id>oracle10g</id>
<profile> <dependencies>
<id>oracle10g</id> <dependency>
<dependencies> <groupId>com.oracle</groupId>
<dependency> <artifactId>ojdbc14</artifactId>
<groupId>com.oracle</groupId> <!-- use the 10g drivers which are surprisingly largely bug free -->
<artifactId>ojdbc14</artifactId> <version>10.0.2.0</version>
<!-- use the 10g drivers which are surprisingly largely bug free --> </dependency>
<version>10.0.2.0</version> </dependencies>
</dependency> <properties>
</dependencies> <db.dialect>org.hibernate.dialect.Oracle10gDialect</db.dialect>
<properties> <jdbc.driver>oracle.jdbc.driver.OracleDriver</jdbc.driver>
<db.dialect>org.hibernate.dialect.Oracle10gDialect</db.dialect> <jdbc.url>jdbc:oracle:thin:@dev01.qa.atl.jboss.com:1521:qadb01</jdbc.url>
<jdbc.driver>oracle.jdbc.driver.OracleDriver</jdbc.driver> <jdbc.user>cruisecontrol</jdbc.user>
<jdbc.url>jdbc:oracle:thin:@dev01.qa.atl.jboss.com:1521:qadb01</jdbc.url> <jdbc.pass>cruisecontrol</jdbc.pass>
<jdbc.user>cruisecontrol</jdbc.user> <jdbc.isolation />
<jdbc.pass>cruisecontrol</jdbc.pass> </properties>
<jdbc.isolation/> </profile>
</properties>
</profile> <!-- The DB2 8.x test envionment (using 9x drivers)-->
<profile>
<!-- The DB2 8.x test envionment (using 9x drivers)--> <id>db2-8</id>
<profile> <dependencies>
<id>db2-8</id> <dependency>
<dependencies> <groupId>com.ibm</groupId>
<dependency> <artifactId>db2jcc</artifactId>
<groupId>com.ibm</groupId> <version>3.1.57</version>
<artifactId>db2jcc</artifactId> </dependency>
<version>3.1.57</version> <dependency>
</dependency> <groupId>com.ibm</groupId>
<dependency> <artifactId>db2jcc_license_cu</artifactId>
<groupId>com.ibm</groupId> <version>3.1.57</version>
<artifactId>db2jcc_license_cu</artifactId> </dependency>
<version>3.1.57</version> </dependencies>
</dependency> <properties>
</dependencies> <db.dialect>org.hibernate.dialect.DB2Dialect</db.dialect>
<properties> <jdbc.driver>com.ibm.db2.jcc.DB2Driver</jdbc.driver>
<db.dialect>org.hibernate.dialect.DB2Dialect</db.dialect> <jdbc.url>jdbc:db2://dev32.qa.atl.jboss.com:50000/jbossqa</jdbc.url>
<jdbc.driver>com.ibm.db2.jcc.DB2Driver</jdbc.driver> <jdbc.user>hiber</jdbc.user>
<jdbc.url>jdbc:db2://dev32.qa.atl.jboss.com:50000/jbossqa</jdbc.url> <jdbc.pass>hiber</jdbc.pass>
<jdbc.user>hiber</jdbc.user> <jdbc.isolation />
<jdbc.pass>hiber</jdbc.pass> </properties>
<jdbc.isolation/> </profile>
</properties>
</profile> <!-- The Sybase 12 test envionment -->
<profile>
<!-- The Sybase 12 test envionment --> <id>sybase12</id>
<profile> <dependencies>
<id>sybase12</id> <dependency>
<dependencies> <groupId>com.sybase</groupId>
<dependency> <artifactId>jconnect</artifactId>
<groupId>com.sybase</groupId> <version>6.0.5</version>
<artifactId>jconnect</artifactId> </dependency>
<version>6.0.5</version> </dependencies>
</dependency> <properties>
</dependencies> <db.dialect>org.hibernate.dialect.SybaseDialect</db.dialect>
<properties> <jdbc.driver>com.sybase.jdbc3.jdbc.SybDriver</jdbc.driver>
<db.dialect>org.hibernate.dialect.SybaseDialect</db.dialect> <jdbc.url>jdbc:sybase:Tds:dev01.qa.atl.jboss.com:4100/cruisecontrol</jdbc.url>
<jdbc.driver>com.sybase.jdbc3.jdbc.SybDriver</jdbc.driver> <jdbc.user>cruisecontrol</jdbc.user>
<jdbc.url>jdbc:sybase:Tds:dev01.qa.atl.jboss.com:4100/cruisecontrol</jdbc.url> <jdbc.pass>cruisecontrol</jdbc.pass>
<jdbc.user>cruisecontrol</jdbc.user> <jdbc.isolation />
<jdbc.pass>cruisecontrol</jdbc.pass> </properties>
<jdbc.isolation/> </profile>
</properties>
</profile> <!-- The SQLServer2005 (jTDS) test envionment -->
<profile>
<!-- The SQLServer2005 (jTDS) test envionment --> <id>sqlserver-jtds</id>
<profile> <dependencies>
<id>sqlserver-jtds</id> <dependency>
<dependencies> <groupId>net.sourceforge.jtds</groupId>
<dependency> <artifactId>jtds</artifactId>
<groupId>net.sourceforge.jtds</groupId> <version>1.2</version>
<artifactId>jtds</artifactId> </dependency>
<version>1.2</version> </dependencies>
</dependency> <properties>
</dependencies> <db.dialect>org.hibernate.dialect.SQLServerDialect</db.dialect>
<properties> <jdbc.driver>net.sourceforge.jtds.jdbc.Driver</jdbc.driver>
<db.dialect>org.hibernate.dialect.SQLServerDialect</db.dialect> <jdbc.url>jdbc:jtds:sqlserver://dev30.qa.atl.jboss.com:3918/cruisecontrol</jdbc.url>
<jdbc.driver>net.sourceforge.jtds.jdbc.Driver</jdbc.driver> <jdbc.user>cruisecontrol</jdbc.user>
<jdbc.url>jdbc:jtds:sqlserver://dev30.qa.atl.jboss.com:3918/cruisecontrol</jdbc.url> <jdbc.pass>cruisecontrol</jdbc.pass>
<jdbc.user>cruisecontrol</jdbc.user> <jdbc.isolation />
<jdbc.pass>cruisecontrol</jdbc.pass> </properties>
<jdbc.isolation/> </profile>
</properties>
</profile> <!-- The SQLServer2005 (MS JDBC) test envionment -->
<profile>
<!-- The SQLServer2005 (MS JDBC) test envionment --> <id>sqlserver-msjdbc</id>
<profile> <dependencies>
<id>sqlserver-msjdbc</id> <dependency>
<dependencies> <groupId>com.microsoft.sqlserver</groupId>
<dependency> <artifactId>msjdbc</artifactId>
<groupId>com.microsoft.sqlserver</groupId> <version>1.1</version>
<artifactId>msjdbc</artifactId> </dependency>
<version>1.1</version> </dependencies>
</dependency> <properties>
</dependencies> <db.dialect>org.hibernate.dialect.SQLServerDialect</db.dialect>
<properties> <jdbc.driver>com.microsoft.sqlserver.jdbc.SQLServerDriver</jdbc.driver>
<db.dialect>org.hibernate.dialect.SQLServerDialect</db.dialect> <jdbc.url>jdbc:sqlserver://dev30.qa.atl.jboss.com:3918</jdbc.url>
<jdbc.driver>com.microsoft.sqlserver.jdbc.SQLServerDriver</jdbc.driver> <jdbc.user>cruisecontrol</jdbc.user>
<jdbc.url>jdbc:sqlserver://dev30.qa.atl.jboss.com:3918</jdbc.url> <jdbc.pass>cruisecontrol</jdbc.pass>
<jdbc.user>cruisecontrol</jdbc.user> <jdbc.isolation>4096</jdbc.isolation>
<jdbc.pass>cruisecontrol</jdbc.pass> </properties>
<jdbc.isolation>4096</jdbc.isolation> </profile>
</properties>
</profile> </profiles>
</profiles>
<scm>
</project> <connection>scm:svn:http://anonsvn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1</connection>
<developerConnection>scm:svn:https://svn.jboss.org/repos/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-testsuite</developerConnection>
<url>http://viewvc.jboss.org/cgi-bin/viewvc.cgi/hibernate/core/tags/hibernate-3.3.0.CR1/hibernate-testsuite</url>
</scm>
</project>