hibernate-parent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-parent</artifactId> <version>3.6.10.Final</version> </dependency>
<?xml version="1.0"?> <!-- ~ Hibernate, Relational Persistence for Idiomatic Java ~ ~ Copyright (c) 2011, Red Hat Inc. or third-party contributors as ~ indicated by the @author tags or express copyright attribution ~ statements applied by the authors. All third-party contributions are ~ distributed under license by Red Hat Inc. ~ ~ This copyrighted material is made available to anyone wishing to use, modify, ~ copy, or redistribute it subject to the terms and conditions of the GNU ~ Lesser General Public License, as published by the Free Software Foundation. ~ ~ This program is distributed in the hope that it will be useful, ~ but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY ~ or FITNESS FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License ~ for more details. ~ ~ You should have received a copy of the GNU Lesser General Public License ~ along with this distribution; if not, write to: ~ Free Software Foundation, Inc. ~ 51 Franklin Street, Fifth Floor ~ Boston, MA 02110-1301 USA --> <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> <groupId>org.hibernate</groupId> <artifactId>hibernate-parent</artifactId> <packaging>pom</packaging> <version>3.6.10.Final</version> <name>Hibernate Core Parent POM</name> <description>The base POM for all Hibernate Core modules.</description> <url>http://hibernate.org</url> <inceptionYear>2002</inceptionYear> <organization> <name>Hibernate.org</name> <url>http://hibernate.org</url> </organization> <developers> <developer> <id>hibernate.org</id> <name>Hibernate.org Developers</name> <organization>Hibernate.org</organization> <organizationUrl>http://www.hibernate.org</organizationUrl> </developer> </developers> <licenses> <license> <name>GNU Lesser General Public License</name> <url>http://www.gnu.org/licenses/lgpl-2.1.html</url> <comments>See discussion at http://hibernate.org/license for more details.</comments> <distribution>repo</distribution> </license> </licenses> <scm> <connection>scm:git:git//github.com:hibernate/hibernate-core.git</connection> <developerConnection>scm:git:git//github.com:hibernate/hibernate-core.git</developerConnection> <url>http://github.com/hibernate/hibernate-core</url> </scm> <ciManagement> <system>hudson</system> <url>http://hudson.jboss.org/hudson/job/hibernate-core-trunk/</url> <notifiers> <notifier> <type>mail</type> <address>hibernate-dev@lists.jboss.org</address> </notifier> </notifiers> </ciManagement> <issueManagement> <system>jira</system> <url>http://opensource.atlassian.com/projects/hibernate/browse/HHH</url> </issueManagement> <mailingLists> <mailingList> <name>Hibernate Announcements</name> <post>hibernate-announce@lists.jboss.org</post> <subscribe>https://lists.jboss.org/mailman/listinfo/hibernate-announce</subscribe> <unsubscribe>https://lists.jboss.org/mailman/listinfo/hibernate-announce</unsubscribe> <archive>http://lists.jboss.org/pipermail/hibernate-dev/</archive> </mailingList> <mailingList> <name>Hibernate Commit Notificatons</name> <post>hibernate-commits@lists.jboss.org</post> <subscribe>https://lists.jboss.org/mailman/listinfo/hibernate-commits</subscribe> <unsubscribe>https://lists.jboss.org/mailman/listinfo/hibernate-commits</unsubscribe> <archive>http://lists.jboss.org/pipermail/hibernate-commits/</archive> </mailingList> <mailingList> <name>Hibernate Developers</name> <post>hibernate-dev@lists.jboss.org</post> <subscribe>https://lists.jboss.org/mailman/listinfo/hibernate-dev</subscribe> <unsubscribe>https://lists.jboss.org/mailman/listinfo/hibernate-dev</unsubscribe> <archive>http://lists.jboss.org/pipermail/hibernate-dev/</archive> <otherArchives> <otherArchive>http://www.mail-archive.com/hibernate-dev%40lists.jboss.org/index.html</otherArchive> </otherArchives> </mailingList> <mailingList> <name>Hibernate Issue Notifications</name> <post>hibernate-issues@lists.jboss.org</post> <subscribe>https://lists.jboss.org/mailman/listinfo/hibernate-issues</subscribe> <unsubscribe>https://lists.jboss.org/mailman/listinfo/hibernate-issues</unsubscribe> <archive>http://lists.jboss.org/pipermail/hibernate-issues/</archive> </mailingList> </mailingLists> <build> <plugins> <plugin> <!-- Needed in order to load the proper 'artifact handler' for the 'jdocbook-style' packaging --> <groupId>org.jboss.maven.plugins</groupId> <artifactId>maven-jdocbook-style-plugin</artifactId> <extensions>true</extensions> </plugin> <plugin> <groupId>org.codehaus.groovy.maven</groupId> <artifactId>gmaven-plugin</artifactId> <version>1.0</version> <executions> <execution> <phase>deploy</phase> <goals> <goal>execute</goal> </goals> <configuration> <source><![CDATA[ def javaVersion=System.getProperty("java.version") if(!javaVersion.startsWith("1.5")){ fail("Please using JDK5 to do Hibernate release!") } ]]> </source> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <executions> <execution> <id>enforce-java</id> <goals> <goal>enforce</goal> </goals> </execution> </executions> <configuration> <rules> <requireJavaVersion> <!-- require JDK 1.5 to run the build --> <version>[1.5,)</version> </requireJavaVersion> <requireMavenVersion> <!-- we need at least Maven 2.0.8 because of a bug fix affecting our antlr usage --> <!-- 2.0.8 not released at this time, so I instead say anything greater that 2.0.7 --> <version>(2.0.7,)</version> </requireMavenVersion> </rules> </configuration> </plugin> <!-- by default, compile to JDK 1.5 compatibility (individual modules and/or user can override) --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <configuration> <source>1.5</source> <target>1.5</target> </configuration> </plugin> <!-- add specification/implementation details to the manifests --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifest> <addDefaultSpecificationEntries>true</addDefaultSpecificationEntries> <addDefaultImplementationEntries>true</addDefaultImplementationEntries> </manifest> <manifestEntries> <Implementation-URL>http://hibernate.org</Implementation-URL> </manifestEntries> </archive> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <configuration> <redirectTestOutputToFile>true</redirectTestOutputToFile> <argLine>-Xmx1024m</argLine> </configuration> </plugin> <!-- Attach source jars --> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>attach-sources</id> <phase>verify</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> </plugins> <pluginManagement> <plugins> <plugin> <groupId>org.jboss.maven.plugins</groupId> <artifactId>maven-jdocbook-plugin</artifactId> <version>2.3.4</version> <extensions>true</extensions> <dependencies> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-jdocbook-style</artifactId> <version>2.0.1</version> <type>jdocbook-style</type> </dependency> </dependencies> <configuration> <formats> <format> <formatName>pdf</formatName> <stylesheetResource>classpath:/xslt/org/hibernate/jdocbook/xslt/pdf.xsl </stylesheetResource> <finalName>hibernate_reference.pdf</finalName> </format> <format> <formatName>html_single</formatName> <stylesheetResource>classpath:/xslt/org/hibernate/jdocbook/xslt/xhtml-single.xsl </stylesheetResource> <finalName>index.html</finalName> </format> <format> <formatName>html</formatName> <stylesheetResource>classpath:/xslt/org/hibernate/jdocbook/xslt/xhtml.xsl </stylesheetResource> <finalName>index.html</finalName> </format> </formats> <options> <xincludeSupported>true</xincludeSupported> <xmlTransformerType>saxon</xmlTransformerType> <!-- needed for uri-resolvers; can be ommitted if using 'current' uri scheme --> <!-- could also locate the docbook dependency and inspect its version... --> <docbookVersion>1.72.0</docbookVersion> <localeSeparator>-</localeSeparator> </options> </configuration> </plugin> <plugin> <groupId>org.jboss.maven.plugins</groupId> <artifactId>maven-jdocbook-style-plugin</artifactId> <version>2.0.0</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-javadoc-plugin</artifactId> <version>2.5</version> <configuration> <links> <link>http://download.oracle.com/javase/1.5.0/docs/api/</link> <link>http://download.oracle.com/javaee/5/api/</link> </links> <packagesheader>Hibernate Packages</packagesheader> <doctitle>Hibernate Core ${project.version}</doctitle> <windowtitle>Hibernate Core ${project.version}</windowtitle> <bottom><![CDATA[Copyright © ${project.inceptionYear}-{currentYear} <a href="http://redhat.com">Red Hat Middleware, LLC.</a> All Rights Reserved]]></bottom> <excludePackageNames>orh.hibernate.tutorial*</excludePackageNames> <groups> <group> <title>Core API</title> <packages> org.hibernate:org.hibernate.classic:org.hibernate.criterion:org.hibernate.mapping:org.hibernate.metadata:org.hibernate.cfg:org.hibernate.stat </packages> </group> <group> <title>Extension SPI/API</title> <packages> org.hibernate.id*:org.hibernate.connection:org.hibernate.transaction:org.hibernate.type:org.hibernate.dialect*:org.hibernate.cache*:org.hibernate.event*:org.hibernate.property:org.hibernate.loader*:org.hibernate.persister*:org.hibernate.proxy:org.hibernate.tuple:org.hibernate.transform:org.hibernate.collection:org.hibernate.jdbc:org.hibernate.usertype </packages> </group> <group> <title>JBoss Cache Integration</title> <packages>org.hibernate.cache.jbc2*</packages> </group> <group> <title>Miscellaneous API</title> <packages>org.hibernate.tool.hbm2ddl:org.hibernate.jmx:org.hibernate.tool.instrument*</packages> </group> </groups> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-plugin</artifactId> <version>2.4.3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jar-plugin</artifactId> <version>2.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-enforcer-plugin</artifactId> <version>1.0-alpha-3</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.0.2</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-antrun-plugin</artifactId> <version>1.3</version> </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.jboss.maven.plugins</groupId> <artifactId>maven-injection-plugin</artifactId> <version>1.0.2</version> <executions> <execution> <phase>compile</phase> <goals> <goal>bytecode</goal> </goals> </execution> </executions> </plugin> </plugins> </pluginManagement> <extensions> <!-- webdav based deployments (snapshot repo) --> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-webdav</artifactId> <version>1.0-beta-2</version> </extension> <!-- scm based deployments (release repo) --> <extension> <groupId>org.apache.maven.wagon</groupId> <artifactId>wagon-scm</artifactId> <version>1.0-beta-6</version> </extension> <extension> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-manager-plexus</artifactId> <version>1.0</version> </extension> <extension> <groupId>org.apache.maven.scm</groupId> <artifactId>maven-scm-provider-svnexe</artifactId> <version>1.0</version> </extension> </extensions> </build> <reporting> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-surefire-report-plugin</artifactId> <version>2.4.3</version> </plugin> <!-- <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-jxr-plugin</artifactId> <version>2.1</version> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-pmd-plugin</artifactId> <version>2.2</version> <configuration> <linkXRef>true</linkXRef> <minimumTokens>100</minimumTokens> <targetJdk>1.4</targetJdk> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>taglist-maven-plugin</artifactId> <version>2.1</version> <configuration> <tags> <tag>@FIXME</tag> <tag>@fixme</tag> <tag>FIXME</tag> <tag>fixme</tag> <tag>@TODO</tag> <tag>@todo</tag> <tag>TODO</tag> <tag>todo</tag> </tags> </configuration> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>javancss-maven-plugin</artifactId> <version>2.0-beta-2</version> </plugin> --> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>findbugs-maven-plugin</artifactId> <version>1.1.1</version> <configuration> <onlyAnalyze>org.hibernate.*</onlyAnalyze> </configuration> </plugin> </plugins> </reporting> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> </dependency> <!-- test-scoped dependencies for common testing dependencies --> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>3.8.1</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>jcl-over-slf4j</artifactId> <version>${slf4jVersion}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-log4j12</artifactId> <version>${slf4jVersion}</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> <!-- / test-scoped dependencies for common testing dependencies --> </dependencies> <dependencyManagement> <dependencies> <dependency> <groupId>org.slf4j</groupId> <artifactId>slf4j-api</artifactId> <version>${slf4jVersion}</version> </dependency> <dependency> <groupId>antlr</groupId> <artifactId>antlr</artifactId> <version>2.7.6</version> </dependency> <dependency> <groupId>commons-collections</groupId> <artifactId>commons-collections</artifactId> <version>3.1</version> </dependency> <dependency> <groupId>dom4j</groupId> <artifactId>dom4j</artifactId> <version>1.6.1</version> </dependency> <!-- javassist is optional, but if defined it should be version 3.9.0 --> <dependency> <groupId>javassist</groupId> <artifactId>javassist</artifactId> <version>3.12.0.GA</version> </dependency> <!-- cglib is optional, but if defined it should be version 2.2 --> <dependency> <groupId>cglib</groupId> <artifactId>cglib</artifactId> <version>2.2</version> </dependency> <!-- Set the version of the JPA api to be used throughout the the project --> <dependency> <groupId>org.hibernate.javax.persistence</groupId> <artifactId>hibernate-jpa-2.0-api</artifactId> <version>1.0.1.Final</version> </dependency> <!-- Set the version of the hibernate-commons-annotations to be used throughout the the project --> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-commons-annotations</artifactId> <version>3.2.0.Final</version> </dependency> <!-- set the optional Bean Validation and Hibernate Validator to be used throughout the project --> <dependency> <groupId>javax.validation</groupId> <artifactId>validation-api</artifactId> <version>1.0.0.GA</version> </dependency> <dependency> <groupId>org.hibernate</groupId> <artifactId>hibernate-validator</artifactId> <version>4.1.0.Final</version> </dependency> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <version>1.2.145</version> </dependency> <dependency> <groupId>org.jboss.byteman</groupId> <artifactId>byteman</artifactId> <version>${bytemanVersion}</version> </dependency> </dependencies> </dependencyManagement> <distributionManagement> <repository> <id>jboss-releases-repository</id> <name>JBoss Releases Repository</name> <url>https://repository.jboss.org/nexus/service/local/staging/deploy/maven2/</url> </repository> <snapshotRepository> <id>jboss-snapshots-repository</id> <name>JBoss Snapshot Repository</name> <url>https://repository.jboss.org/nexus/content/repositories/snapshots/</url> </snapshotRepository> </distributionManagement> <profiles> <!-- =============================== --> <!-- Database profiles --> <!-- =============================== --> <!-- HSQLDB is the default (eventually move to H2) --> <profile> <id>hsqldb</id> <activation> <activeByDefault>false</activeByDefault> </activation> <dependencies> <dependency> <groupId>org.hsqldb</groupId> <artifactId>hsqldb</artifactId> <version>2.0.0</version> <scope>test</scope> </dependency> </dependencies> <properties> <db.dialect>org.hibernate.dialect.HSQLDialect</db.dialect> <jdbc.driver>org.hsqldb.jdbcDriver</jdbc.driver> <jdbc.url>jdbc:hsqldb:.</jdbc.url> <jdbc.user>sa</jdbc.user> <jdbc.pass/> <jdbc.isolation/> </properties> </profile> <profile> <id>h2</id> <activation> <activeByDefault>true</activeByDefault> </activation> <dependencies> <dependency> <groupId>com.h2database</groupId> <artifactId>h2</artifactId> <scope>test</scope> </dependency> </dependencies> <properties> <db.dialect>org.hibernate.dialect.H2Dialect</db.dialect> <jdbc.driver>org.h2.Driver</jdbc.driver> <jdbc.url>jdbc:h2:mem:db1;DB_CLOSE_DELAY=-1;MVCC=TRUE</jdbc.url> <jdbc.user>sa</jdbc.user> <jdbc.pass/> <jdbc.isolation/> </properties> </profile> <profile> <id>derby</id> <dependencies> <dependency> <groupId>org.apache.derby</groupId> <artifactId>derby</artifactId> <!-- 10.5.3.0 has a bad pom --> <version>10.7.1.1</version> <scope>test</scope> </dependency> </dependencies> <properties> <db.dialect>org.hibernate.dialect.DerbyDialect</db.dialect> <jdbc.driver>org.apache.derby.jdbc.EmbeddedDriver</jdbc.driver> <jdbc.url>jdbc:derby:${project.build.outputDirectory}/test/derby;create=true</jdbc.url> <jdbc.user>sa</jdbc.user> <jdbc.pass/> <jdbc.isolation/> </properties> </profile> <!-- ################################################################### Profiles naming db instances in the Red Hat QA/QE lab First, those with OSS drivers ################################################################### --> <!-- The MySQL 5 test envionment --> <profile> <id>mysql50</id> <dependencies> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.16</version> <scope>test</scope> </dependency> </dependencies> <properties> <db.dialect>org.hibernate.dialect.MySQL5InnoDBDialect</db.dialect> <jdbc.driver>com.mysql.jdbc.Driver</jdbc.driver> <jdbc.url>jdbc:mysql://vmg08.mw.lab.eng.bos.redhat.com/hibbr35</jdbc.url> <jdbc.user>hibbr35</jdbc.user> <jdbc.pass>hibbr35</jdbc.pass> <jdbc.isolation/> </properties> </profile> <!-- The MySQL 5.1 test envionment --> <profile> <id>mysql51</id> <dependencies> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.16</version> <scope>test</scope> </dependency> </dependencies> <properties> <db.dialect>org.hibernate.dialect.MySQL5InnoDBDialect</db.dialect> <jdbc.driver>com.mysql.jdbc.Driver</jdbc.driver> <jdbc.url>jdbc:mysql://vmg02.mw.lab.eng.bos.redhat.com/hibbr35</jdbc.url> <jdbc.user>hibbr35</jdbc.user> <jdbc.pass>hibbr35</jdbc.pass> <jdbc.isolation/> </properties> </profile> <!-- The MySQL 5.1 Cluster test envionment --> <profile> <id>mysql51-cluster</id> <dependencies> <dependency> <groupId>mysql</groupId> <artifactId>mysql-connector-java</artifactId> <version>5.1.8</version> <scope>test</scope> </dependency> </dependencies> <properties> <db.dialect>org.hibernate.dialect.MySQL5Dialect</db.dialect> <jdbc.driver>com.mysql.jdbc.Driver</jdbc.driver> <jdbc.url>jdbc:mysql:loadbalance://dev61.qa.atl2.redhat.com:3306,dev62.qa.atl2.redhat.com:3306/hibbr35 </jdbc.url> <jdbc.user>hibbr35</jdbc.user> <jdbc.pass>hibbr35</jdbc.pass> <jdbc.isolation/> </properties> </profile> <!-- The PostgreSQL 8.2.4 test envionment --> <profile> <id>postgresql82</id> <dependencies> <dependency> <groupId>postgresql</groupId> <artifactId>postgresql</artifactId> <version>8.4-701.jdbc3</version> <scope>test</scope> </dependency> </dependencies> <properties> <db.dialect>org.hibernate.dialect.PostgreSQLDialect</db.dialect> <jdbc.driver>org.postgresql.Driver</jdbc.driver> <jdbc.url>jdbc:postgresql://vmg01.mw.lab.eng.bos.redhat.com:5432:hibbr35</jdbc.url> <jdbc.user>hibbr35</jdbc.user> <jdbc.pass>hibbr35</jdbc.pass> <jdbc.isolation/> </properties> </profile> <!-- The PostgreSQL 8.3.7 test envionment --> <profile> <id>postgresql83</id> <dependencies> <dependency> <groupId>postgresql</groupId> <artifactId>postgresql</artifactId> <version>8.4-701.jdbc3</version> <scope>test</scope> </dependency> </dependencies> <properties> <db.dialect>org.hibernate.dialect.PostgreSQLDialect</db.dialect> <jdbc.driver>org.postgresql.Driver</jdbc.driver> <jdbc.url>jdbc:postgresql://vmg03.mw.lab.eng.bos.redhat.com:5432:hibbr35</jdbc.url> <jdbc.user>hibbr35</jdbc.user> <jdbc.pass>hibbr35</jdbc.pass> <jdbc.isolation/> </properties> </profile> <!-- ################################################################### Then, those with commercial drivers ################################################################### --> <!-- The DB2 8.x test envionment (using 9x drivers)--> <profile> <id>db2v82</id> <dependencies> <dependency> <groupId>com.ibm</groupId> <artifactId>db2jcc</artifactId> <version>3.1.57</version> <scope>test</scope> </dependency> <dependency> <groupId>com.ibm</groupId> <artifactId>db2jcc_license_cu</artifactId> <version>3.1.57</version> <scope>test</scope> </dependency> </dependencies> <properties> <db.dialect>org.hibernate.dialect.DB2Dialect</db.dialect> <jdbc.driver>com.ibm.db2.jcc.DB2Driver</jdbc.driver> <jdbc.url>jdbc:db2://dev32.qa.atl.jboss.com:50000/jbossqa</jdbc.url> <jdbc.user>hibbr35</jdbc.user> <jdbc.pass>hibbr35</jdbc.pass> <jdbc.isolation/> </properties> </profile> <!-- The DB2 9.1 test envionment (using 9x drivers)--> <profile> <id>db2-91</id> <dependencies> <dependency> <groupId>com.ibm</groupId> <artifactId>db2jcc</artifactId> <version>3.8.47</version> <scope>test</scope> </dependency> <dependency> <groupId>com.ibm</groupId> <artifactId>db2jcc_license_cu</artifactId> <version>3.8.47</version> <scope>test</scope> </dependency> </dependencies> <properties> <db.dialect>org.hibernate.dialect.DB2Dialect</db.dialect> <jdbc.driver>com.ibm.db2.jcc.DB2Driver</jdbc.driver> <jdbc.url>jdbc:db2://dev67.qa.atl.jboss.com:50000/jbossqa</jdbc.url> <jdbc.user>hibbr35</jdbc.user> <jdbc.pass>hibbr35</jdbc.pass> <jdbc.isolation/> </properties> </profile> <!-- The DB2 9.7 test envionment (using 9x drivers)--> <profile> <id>db2-97</id> <dependencies> <dependency> <groupId>com.ibm</groupId> <artifactId>db2jcc</artifactId> <version>3.57.86</version> <scope>test</scope> </dependency> <dependency> <groupId>com.ibm</groupId> <artifactId>db2jcc_license_cu</artifactId> <version>3.57.86</version> <scope>test</scope> </dependency> </dependencies> <properties> <db.dialect>org.hibernate.dialect.DB2Dialect</db.dialect> <jdbc.driver>com.ibm.db2.jcc.DB2Driver</jdbc.driver> <jdbc.url>jdbc:db2://vmg06.mw.lab.eng.bos.redhat.com:50000/jbossqa</jdbc.url> <jdbc.user>hibbr35</jdbc.user> <jdbc.pass>hibbr35</jdbc.pass> <jdbc.isolation/> </properties> </profile> <!-- The Oracle9i test envionment --> <profile> <id>oracle9i</id> <dependencies> <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc14</artifactId> <!-- use the 10g drivers which are surprisingly largely bug free --> <version>10.0.2.0</version> <scope>test</scope> </dependency> </dependencies> <properties> <db.dialect>org.hibernate.dialect.Oracle9iDialect</db.dialect> <jdbc.driver>oracle.jdbc.driver.OracleDriver</jdbc.driver> <jdbc.url>jdbc:oracle:thin:@dev20.qa.atl.jboss.com:1521:qa</jdbc.url> <jdbc.user>hibbr35</jdbc.user> <jdbc.pass>hibbr35</jdbc.pass> <jdbc.isolation/> </properties> </profile> <!-- The Oracle10g test envionment --> <profile> <id>oracle10g</id> <dependencies> <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc14</artifactId> <!-- use the 10g drivers which are surprisingly largely bug free --> <version>10.0.2.0</version> <scope>test</scope> </dependency> </dependencies> <properties> <db.dialect>org.hibernate.dialect.Oracle10gDialect</db.dialect> <jdbc.driver>oracle.jdbc.driver.OracleDriver</jdbc.driver> <jdbc.url>jdbc:oracle:thin:@vmg05.mw.lab.eng.bos.redhat.com:1521:qaora10</jdbc.url> <jdbc.user>hibbr35</jdbc.user> <jdbc.pass>hibbr35</jdbc.pass> <jdbc.isolation/> </properties> </profile> <!-- The Oracle11g test envionment --> <profile> <id>oracle11g</id> <dependencies> <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc5</artifactId> <version>11.1.0.7.0</version> <scope>test</scope> </dependency> </dependencies> <properties> <db.dialect>org.hibernate.dialect.Oracle10gDialect</db.dialect> <jdbc.driver>oracle.jdbc.driver.OracleDriver</jdbc.driver> <jdbc.url>jdbc:oracle:thin:@dev04.qa.atl2.redhat.com:1521:qaora11</jdbc.url> <jdbc.user>hibbr35</jdbc.user> <jdbc.pass>hibbr35</jdbc.pass> <jdbc.isolation/> </properties> </profile> <!-- The Oracle11gRAC test envionment --> <profile> <id>oracle11gRAC</id> <dependencies> <dependency> <groupId>com.oracle</groupId> <artifactId>ojdbc5</artifactId> <version>11.1.0.7.0</version> <scope>test</scope> </dependency> </dependencies> <properties> <db.dialect>org.hibernate.dialect.Oracle10gDialect</db.dialect> <jdbc.driver>oracle.jdbc.driver.OracleDriver</jdbc.driver> <jdbc.url> jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(LOAD_BALANCE=ON)(ADDRESS=(PROTOCOL=TCP)(HOST=vmg24-vip.mw.lab.eng.bos.redhat.com)(PORT=1521))(ADDRESS=(PROTOCOL=TCP)(HOST=vmg25-vip.mw.lab.eng.bos.redhat.com)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=qarac.jboss))) </jdbc.url> <jdbc.user>hibbr35</jdbc.user> <jdbc.pass>hibbr35</jdbc.pass> <jdbc.isolation/> </properties> </profile> <!-- The Sybase 15 test envionment --> <profile> <id>sybase15</id> <dependencies> <dependency> <groupId>com.sybase</groupId> <artifactId>jconnect</artifactId> <version>6.0.5</version> <scope>test</scope> </dependency> </dependencies> <properties> <db.dialect>org.hibernate.dialect.SybaseASE15Dialect</db.dialect> <jdbc.driver>com.sybase.jdbc3.jdbc.SybDriver</jdbc.driver> <jdbc.url>jdbc:sybase:Tds:vmg07.mw.lab.eng.bos.redhat.com:5000/hibbr35?SQLINITSTRING=set quoted_identifier on&DYNAMIC_PREPARE=true</jdbc.url> <jdbc.user>hibbr35</jdbc.user> <jdbc.pass>hibbr35</jdbc.pass> <jdbc.isolation/> </properties> </profile> <profile> <id>sybase15-jdbc4</id> <dependencies> <dependency> <groupId>com.sybase</groupId> <artifactId>jconnect</artifactId> <version>7.0.0_26502</version> <scope>test</scope> </dependency> </dependencies> <properties> <db.dialect>org.hibernate.dialect.SybaseASE15Dialect</db.dialect> <jdbc.driver>com.sybase.jdbc4.jdbc.SybDriver</jdbc.driver> <jdbc.url>jdbc:sybase:Tds:vmg07.mw.lab.eng.bos.redhat.com:5000/hibbr35?SQLINITSTRING=set quoted_identifier on</jdbc.url> <jdbc.user>hibbr35</jdbc.user> <jdbc.pass>hibbr35</jdbc.pass> <jdbc.isolation/> </properties> </profile> <profile> <id>sybase155</id> <dependencies> <dependency> <groupId>com.sybase</groupId> <artifactId>jconnect</artifactId> <version>6.0.5</version> <scope>test</scope> </dependency> </dependencies> <properties> <db.dialect>org.hibernate.dialect.SybaseASE15Dialect</db.dialect> <jdbc.driver>com.sybase.jdbc3.jdbc.SybDriver</jdbc.driver> <jdbc.url>jdbc:sybase:Tds:vmg09.mw.lab.eng.bos.redhat.com:5000/hibbr35?SQLINITSTRING=set quoted_identifier on&DYNAMIC_PREPARE=true</jdbc.url> <jdbc.user>hibbr35</jdbc.user> <jdbc.pass>hibbr35</jdbc.pass> <jdbc.isolation/> </properties> </profile> <profile> <id>sybase155-jdbc4</id> <dependencies> <dependency> <groupId>com.sybase</groupId> <artifactId>jconnect</artifactId> <version>7.0.0_26502</version> <scope>test</scope> </dependency> </dependencies> <properties> <db.dialect>org.hibernate.dialect.SybaseASE15Dialect</db.dialect> <jdbc.driver>com.sybase.jdbc4.jdbc.SybDriver</jdbc.driver> <jdbc.url>jdbc:sybase:Tds:vmg09.mw.lab.eng.bos.redhat.com:5000/hibbr35?SQLINITSTRING=set quoted_identifier on</jdbc.url> <jdbc.user>hibbr35</jdbc.user> <jdbc.pass>hibbr35</jdbc.pass> <jdbc.isolation/> </properties> </profile> <!-- The SQLServer2005 (MS JDBC) test envionment --> <profile> <id>mssql2005</id> <dependencies> <dependency> <groupId>com.microsoft.sqlserver</groupId> <artifactId>msjdbc</artifactId> <version>2.0.1008.2</version> <scope>test</scope> </dependency> </dependencies> <properties> <db.dialect>org.hibernate.dialect.SQLServerDialect</db.dialect> <jdbc.driver>com.microsoft.sqlserver.jdbc.SQLServerDriver</jdbc.driver> <jdbc.url>jdbc:sqlserver://dev30.qa.atl.jboss.com:3918</jdbc.url> <jdbc.user>hibbr35</jdbc.user> <jdbc.pass>hibbr35</jdbc.pass> <jdbc.isolation>4096</jdbc.isolation> </properties> </profile> <!-- The SQLServer2005 (MS JDBC) test envionment --> <profile> <id>mssql2008</id> <dependencies> <dependency> <groupId>com.microsoft.sqlserver</groupId> <artifactId>msjdbc</artifactId> <version>2.0.1008.2</version> <scope>test</scope> </dependency> </dependencies> <properties> <db.dialect>org.hibernate.dialect.SQLServerDialect</db.dialect> <jdbc.driver>com.microsoft.sqlserver.jdbc.SQLServerDriver</jdbc.driver> <jdbc.url>jdbc:sqlserver://vmg04.mw.lab.eng.bos.redhat.com:1433</jdbc.url> <jdbc.user>hibbr35</jdbc.user> <jdbc.pass>hibbr35</jdbc.pass> <jdbc.isolation>4096</jdbc.isolation> </properties> </profile> </profiles> <properties> <slf4jVersion>1.6.1</slf4jVersion> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <bytemanVersion>1.5.1</bytemanVersion> </properties> </project>