| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828 |
- <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
- xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
- <modelVersion>4.0.0</modelVersion>
- <parent>
- <groupId>org.jboss</groupId>
- <artifactId>jboss-parent</artifactId>
- <version>9</version>
- </parent>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-tools</artifactId>
- <version>4.3.1.Final</version>
- <packaging>jar</packaging>
- <name>Hibernate Tools</name>
- <description>Hibernate Tools</description>
- <url>http://www.hibernate.org/subprojects/tools.html</url>
- <issueManagement>
- <system>JIRA</system>
- <url>http://hibernate.onjira.com/browse/HBX</url>
- </issueManagement>
- <scm>
- <connection>scm:git:git://github.com/hibernate/hibernate-tools.git</connection>
- <developerConnection>scm:git:git@github.com:hibernate/hibernate-tools.git</developerConnection>
- <url>http://github.com/hibernate/hibernate-tools</url>
- </scm>
- <organization>
- <name>Hibernate</name>
- <url>http://www.hibernate.org</url>
- </organization>
- <licenses>
- <license>
- <name>GNU Lesser General Public License</name>
- <url>http://www.gnu.org/licenses/lgpl-2.1.html</url>
- </license>
- </licenses>
- <developers>
- <developer>
- <id>maxandersen</id>
- <name>Max Andersen</name>
- <email>max@hibernate.org</email>
- <url>http://in.relation.to/Bloggers/Max</url>
- </developer>
- </developers>
- <properties>
- <hibernateversion>4.3.10.Final</hibernateversion>
- <hibernateJpaversion>1.0.0.Final</hibernateJpaversion>
- <hibernateCommonsAnnotationsVersion>4.0.5.Final</hibernateCommonsAnnotationsVersion>
- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
- <!-- Default settings for Database connection; to be overridden in db specific profiles -->
- <db.dialect>org.hibernate.dialect.HSQLDialect</db.dialect>
- <jdbc.driver>org.hsqldb.jdbcDriver</jdbc.driver>
- <jdbc.url>jdbc:hsqldb:testdb/hsqldb;shutdown=true</jdbc.url>
- <jdbc.user>sa</jdbc.user>
- <jdbc.pass/>
- <jdbc.driver.groupId>hsqldb</jdbc.driver.groupId>
- <jdbc.driver.artifactId>hsqldb</jdbc.driver.artifactId>
- <jdbc.driver.jdbc.driver.version>1.8.0.10</jdbc.driver.jdbc.driver.version>
- <!-- End of settings for Database connection -->
- </properties>
-
- <!--
- Graphviz should be installed for junit tests and it's bin dir should
- be in classpath
- -->
- <!-- TODO: is it possible to automate this with maven? -->
- <dependencies>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-core</artifactId>
- <version>${hibernateversion}</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.hibernate.common</groupId>
- <artifactId>hibernate-commons-annotations</artifactId>
- <version>${hibernateCommonsAnnotationsVersion}</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>hibernate-entitymanager</artifactId>
- <version>${hibernateversion}</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.hibernate.javax.persistence</groupId>
- <artifactId>hibernate-jpa-2.1-api</artifactId>
- <version>${hibernateJpaversion}</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>javax.transaction</groupId>
- <artifactId>jta</artifactId>
- <version>1.1</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>commons-logging</groupId>
- <artifactId>commons-logging</artifactId>
- <version>1.1</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>junit</groupId>
- <artifactId>junit</artifactId>
- <version>3.8.1</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>ant</groupId>
- <artifactId>ant</artifactId>
- <version>1.6.5</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>ant</groupId>
- <artifactId>ant-launcher</artifactId>
- <version>1.6.5</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-log4j12</artifactId>
- <version>1.5.8</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>freemarker</groupId>
- <artifactId>freemarker</artifactId>
- <version>2.3.8</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.hibernate</groupId>
- <artifactId>jtidy</artifactId>
- <version>r8-20060801</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.eclipse.tycho</groupId>
- <artifactId>org.eclipse.jdt.core</artifactId>
- <version>3.9.1.v20130905-0837</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.eclipse</groupId>
- <artifactId>text</artifactId>
- <version>3.3.0-v20070606-0010</version>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>org.eclipse.core</groupId>
- <artifactId>runtime</artifactId>
- <version>3.9.0-v20130326-1255</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>org.eclipse.equinox</groupId>
- <artifactId>common</artifactId>
- <version>3.6.200-v20130402-1505</version>
- <scope>runtime</scope>
- </dependency>
- <dependency>
- <groupId>jaxen</groupId>
- <artifactId>jaxen</artifactId>
- <version>1.1</version>
- <scope>test</scope>
- </dependency>
- <!-- <dependency>
- <groupId>com.sun</groupId>
- <artifactId>tools</artifactId>
- <version>1.5.0_12</version>
- <scope>system</scope>
- <systemPath>${java.home}/../lib/tools.jar</systemPath>
- </dependency> -->
- <dependency>
- <groupId>mysql</groupId>
- <artifactId>mysql-connector-java</artifactId>
- <version>5.1.18</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>${jdbc.driver.groupId}</groupId>
- <artifactId>${jdbc.driver.artifactId}</artifactId>
- <version>${jdbc.driver.jdbc.driver.version}</version>
- <scope>test</scope>
- </dependency>
- <dependency>
- <groupId>antlr</groupId>
- <artifactId>antlr</artifactId>
- <version>2.7.7</version>
- <type>jar</type>
- <scope>compile</scope>
- </dependency>
- <dependency>
- <groupId>commons-collections</groupId>
- <artifactId>commons-collections</artifactId>
- <version>3.2.1</version>
- </dependency>
- <dependency>
- <groupId>org.slf4j</groupId>
- <artifactId>slf4j-api</artifactId>
- <version>1.5.8</version>
- </dependency>
- </dependencies>
- <build>
- <defaultGoal>install</defaultGoal>
- <sourceDirectory>./src/java</sourceDirectory>
- <testSourceDirectory>./src/test</testSourceDirectory>
- <resources>
- <resource>
- <directory>src/templates</directory>
- </resource>
- <resource>
- <directory>src/java</directory>
- <includes>
- <include>org/hibernate/*.dtd</include>
- <include>org/hibernate/**/*.properties</include>
- </includes>
- </resource>
- </resources>
- <testResources>
- <testResource>
- <filtering>true</filtering>
- <directory>src/testresources</directory>
- <includes>
- <include>**/*.properties</include>
- </includes>
- </testResource>
- </testResources>
- <plugins>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-surefire-plugin</artifactId>
- <configuration>
- <excludes>
- <!-- Tests that don't apply for HSQLDB -->
- <exclude>org/hibernate/tool/test/jdbc2cfg/OracleCompositeIdOrderTest.java</exclude>
- <exclude>org/hibernate/tool/test/jdbc2cfg/OracleViewsTest.java</exclude>
- <exclude>org/hibernate/tool/test/jdbc2cfg/identity/H2IdentityTest.java</exclude>
- <exclude>org/hibernate/tool/test/jdbc2cfg/identity/HSQLIdentityTest.java</exclude>
- <exclude>org/hibernate/tool/test/jdbc2cfg/identity/MySQLIdentityTest.java</exclude>
- <exclude>org/hibernate/tool/test/jdbc2cfg/identity/SQLServerIdentityTest.java</exclude>
- <!-- HSQLDB 1.8.0.2 does not support multiple schemas -->
- <exclude>org/hibernate/tool/test/jdbc2cfg/TernarySchemaTest.java</exclude>
- </excludes>
- <includes>
- <include>**/*Test.java</include>
- </includes>
- </configuration>
- </plugin>
- <plugin>
- <artifactId>maven-clean-plugin</artifactId>
- <configuration>
- <filesets>
- <fileset>
- <directory>testdb</directory>
- </fileset>
- <fileset>
- <directory>test_output</directory>
- </fileset>
- <fileset>
- <directory>toolstestoutput</directory>
- </fileset>
- </filesets>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>properties-maven-plugin</artifactId>
- <version>1.0-alpha-2</version>
- <executions>
- <execution>
- <phase>generate-resources</phase>
- <goals>
- <goal>write-active-profile-properties</goal>
- </goals>
- <configuration>
- <outputFile>
- ${project.build.directory}/test-classes/hibernate.properties
- </outputFile>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-antrun-plugin</artifactId>
- <executions>
- <execution>
- <phase>process-resources</phase>
- <goals>
- <goal>run</goal>
- </goals>
- <configuration>
- <tasks>
- <echo></echo>
- <copy file="${project.build.directory}/test-classes/hibernate.properties" tofile="${project.build.directory}/test-classes/log4j.properties" />
- </tasks>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.codehaus.mojo</groupId>
- <artifactId>build-helper-maven-plugin</artifactId>
- <executions>
- <execution>
- <id>add-test-source</id>
- <phase>generate-sources</phase>
- <goals>
- <goal>add-test-source</goal>
- </goals>
- <configuration>
- <sources>
- <source>./src/testsupport</source>
- </sources>
- </configuration>
- </execution>
- <execution>
- <id>add-test-resource</id>
- <phase>generate-resources</phase>
- <goals>
- <goal>add-test-resource</goal>
- </goals>
- <configuration>
- <resources>
- <resource>
- <directory>./src/test</directory>
- <includes>
- <include>**/*.xml</include>
- </includes>
- </resource>
- <resource>
- <directory>./src/testoutputdependent</directory>
- </resource>
- <resource>
- <directory>./src/testsupport</directory>
- </resource>
- </resources>
- </configuration>
- </execution>
- </executions>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-compiler-plugin</artifactId>
- <configuration>
- <includes>
- <include>**/*.java</include>
- </includes>
- <source>1.5</source>
- <target>1.5</target>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-jar-plugin</artifactId>
- <configuration>
- <archive>
- <!-- <manifestEntries>
- <Implementation-Title>${project.name}</Implementation-Title>
- <Implementation-version>${project.version}</Implementation-version>
- <Implementation-Vendor>hibernate.org</Implementation-Vendor>
- <Implementation-Vendor-Id>hibernate.org
- </Implementation-Vendor-Id>
- <Implementation-URL>http://www.hibernate.org/subprojects/tools.html
- </Implementation-URL>
- </manifestEntries> -->
- </archive>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-javadoc-plugin</artifactId>
- <configuration>
- <stylesheetfile>${basedir}/src/javadoc/jdstyle.css</stylesheetfile>
- </configuration>
- </plugin>
- <plugin>
- <groupId>org.apache.maven.plugins</groupId>
- <artifactId>maven-assembly-plugin</artifactId>
- <configuration>
- <descriptors>
- <descriptor>./src/assembly/dist.xml</descriptor>
- </descriptors>
- </configuration>
- </plugin>
- </plugins>
- <pluginManagement>
- <plugins>
- <!--TODO TEXT. This plugin's configuration is used in m2e only.-->
- <plugin>
- <groupId>org.eclipse.m2e</groupId>
- <artifactId>lifecycle-mapping</artifactId>
- <version>1.0.0</version>
- <configuration>
- <lifecycleMappingMetadata>
- <pluginExecutions>
- <pluginExecution>
- <pluginExecutionFilter>
- <groupId>
- org.apache.maven.plugins
- </groupId>
- <artifactId>
- maven-antrun-plugin
- </artifactId>
- <versionRange>
- [1.4,)
- </versionRange>
- <goals>
- <goal>run</goal>
- </goals>
- </pluginExecutionFilter>
- <action>
- <ignore></ignore>
- </action>
- </pluginExecution>
- <pluginExecution>
- <pluginExecutionFilter>
- <groupId>
- org.codehaus.mojo
- </groupId>
- <artifactId>
- build-helper-maven-plugin
- </artifactId>
- <versionRange>
- [1.5,)
- </versionRange>
- <goals>
- <goal>
- add-test-resource
- </goal>
- </goals>
- </pluginExecutionFilter>
- <action>
- <ignore></ignore>
- </action>
- </pluginExecution>
- <pluginExecution>
- <pluginExecutionFilter>
- <groupId>
- org.codehaus.mojo
- </groupId>
- <artifactId>
- properties-maven-plugin
- </artifactId>
- <versionRange>
- [1.0-alpha-2,)
- </versionRange>
- <goals>
- <goal>
- write-active-profile-properties
- </goal>
- </goals>
- </pluginExecutionFilter>
- <action>
- <ignore></ignore>
- </action>
- </pluginExecution>
- </pluginExecutions>
- </lifecycleMappingMetadata>
- </configuration>
- </plugin>
- </plugins>
- </pluginManagement>
- </build>
- <repositories>
- <!--
- To build Hibernate Tools Core you have to add the JBoss Maven
- repository to your settings.xml See also
- http://community.jboss.org/wiki/ContributingtoHibernateSearch
- -->
- </repositories>
- <profiles>
-
- <!-- =============================== -->
- <!-- Database profiles -->
- <!-- =============================== -->
- <!-- HSQLDB is the default -->
- <profile>
- <id>hsqldb</id>
- <properties>
- <db.dialect>org.hibernate.dialect.HSQLDialect</db.dialect>
- <jdbc.driver>org.hsqldb.jdbcDriver</jdbc.driver>
- <jdbc.url>jdbc:hsqldb:testdb/hsqldb;shutdown=true</jdbc.url>
- <jdbc.user>sa</jdbc.user>
- <jdbc.pass />
- <jdbc.driver.groupId>hsqldb</jdbc.driver.groupId>
- <jdbc.driver.artifactId>hsqldb</jdbc.driver.artifactId>
- <jdbc.driver.jdbc.driver.version>1.8.0.2</jdbc.driver.jdbc.driver.version>
- </properties>
- </profile>
- <profile>
- <id>h2</id>
- <properties>
- <jdbc.driver.groupId>com.h2database</jdbc.driver.groupId>
- <jdbc.driver.artifactId>h2</jdbc.driver.artifactId>
- <db.dialect>org.hibernate.dialect.H2Dialect</db.dialect>
- <jdbc.driver.jdbc.driver.version>1.2.124</jdbc.driver.jdbc.driver.version>
- <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>
-
- <!--
- ###################################################################
- 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>
- <properties>
- <jdbc.driver.groupId>mysql</jdbc.driver.groupId>
- <jdbc.driver.artifactId>mysql-connector-java</jdbc.driver.artifactId>
- <jdbc.driver.jdbc.driver.version>5.0.5</jdbc.driver.jdbc.driver.version>
- <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/hibbrtru</jdbc.url>
- <jdbc.user>hibbrtru</jdbc.user>
- <jdbc.pass>hibbrtru</jdbc.pass>
- <jdbc.isolation />
- </properties>
- </profile>
- <!-- The MySQL 5.1 test envionment -->
- <profile>
- <id>mysql51</id>
- <properties>
- <jdbc.driver.groupId>mysql</jdbc.driver.groupId>
- <jdbc.driver.artifactId>mysql-connector-java</jdbc.driver.artifactId>
- <jdbc.driver.jdbc.driver.version>5.0.5</jdbc.driver.jdbc.driver.version>
- <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/hibbrtru</jdbc.url>
- <jdbc.user>hibbrtru</jdbc.user>
- <jdbc.pass>hibbrtru</jdbc.pass>
- <jdbc.isolation />
- </properties>
- </profile>
- <!-- The MySQL 5.1 Cluster test envionment -->
- <profile>
- <id>mysql51-cluster</id>
- <properties>
- <jdbc.driver.groupId>mysql</jdbc.driver.groupId>
- <jdbc.driver.artifactId>mysql-connector-java</jdbc.driver.artifactId>
- <jdbc.driver.jdbc.driver.version>5.1.8</jdbc.driver.jdbc.driver.version>
- <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/hibbrtru
- </jdbc.url>
- <jdbc.user>hibbrtru</jdbc.user>
- <jdbc.pass>hibbrtru</jdbc.pass>
- <jdbc.isolation />
- </properties>
- </profile>
- <!-- The PostgreSQL 8.2.4 test envionment -->
- <profile>
- <id>postgresql82</id>
- <properties>
- <jdbc.driver.groupId>postgresql</jdbc.driver.groupId>
- <jdbc.driver.artifactId>postgresql</jdbc.driver.artifactId>
- <jdbc.driver.jdbc.driver.version>8.2-504.jdbc3</jdbc.driver.jdbc.driver.version>
- <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:hibbrtru</jdbc.url>
- <jdbc.user>hibbrtru</jdbc.user>
- <jdbc.pass>hibbrtru</jdbc.pass>
- <jdbc.isolation />
- </properties>
- </profile>
- <!-- The PostgreSQL 8.3.7 test envionment -->
- <profile>
- <id>postgresql83</id>
- <properties>
- <jdbc.driver.groupId>postgresql</jdbc.driver.groupId>
- <jdbc.driver.artifactId>postgresql</jdbc.driver.artifactId>
- <jdbc.driver.jdbc.driver.version>8.2-504.jdbc3</jdbc.driver.jdbc.driver.version>
- <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:hibbrtru</jdbc.url>
- <jdbc.user>hibbrtru</jdbc.user>
- <jdbc.pass>hibbrtru</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_license_cu</artifactId>
- <version>3.1.57</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <properties>
- <jdbc.driver.groupId>com.ibm</jdbc.driver.groupId>
- <jdbc.driver.artifactId>db2jcc</jdbc.driver.artifactId>
- <jdbc.driver.jdbc.driver.version>3.1.57</jdbc.driver.jdbc.driver.version>
- <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>hibbrtru</jdbc.user>
- <jdbc.pass>hibbrtru</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_license_cu</artifactId>
- <version>3.8.47</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <properties>
- <jdbc.driver.groupId>com.ibm</jdbc.driver.groupId>
- <jdbc.driver.artifactId>db2jcc</jdbc.driver.artifactId>
- <jdbc.driver.jdbc.driver.version>3.8.47</jdbc.driver.jdbc.driver.version>
- <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>hibbrtru</jdbc.user>
- <jdbc.pass>hibbrtru</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_license_cu</artifactId>
- <version>3.57.86</version>
- <scope>test</scope>
- </dependency>
- </dependencies>
- <properties>
- <jdbc.driver.groupId>com.ibm</jdbc.driver.groupId>
- <jdbc.driver.artifactId>db2jcc</jdbc.driver.artifactId>
- <jdbc.driver.jdbc.driver.version>3.57.86</jdbc.driver.jdbc.driver.version>
- <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>hibbrtru</jdbc.user>
- <jdbc.pass>hibbrtru</jdbc.pass>
- <jdbc.isolation />
- </properties>
- </profile>
- <!-- The Oracle9i test envionment -->
- <profile>
- <id>oracle9i</id>
- <properties>
- <jdbc.driver.groupId>com.oracle</jdbc.driver.groupId>
- <jdbc.driver.artifactId>ojdbc14</jdbc.driver.artifactId>
- <!-- use the 10g drivers which are surprisingly largely bug free -->
- <jdbc.driver.jdbc.driver.version>10.0.2.0</jdbc.driver.jdbc.driver.version>
- <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>hibbrtru</jdbc.user>
- <jdbc.pass>hibbrtru</jdbc.pass>
- <jdbc.isolation />
- </properties>
- </profile>
- <!-- The Oracle10g test envionment -->
- <profile>
- <id>oracle10g</id>
- <properties>
- <jdbc.driver.groupId>com.oracle</jdbc.driver.groupId>
- <jdbc.driver.artifactId>ojdbc14</jdbc.driver.artifactId>
- <!-- use the 10g drivers which are surprisingly largely bug free -->
- <jdbc.driver.jdbc.driver.version>10.0.2.0</jdbc.driver.jdbc.driver.version>
- <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>hibbrtru</jdbc.user>
- <jdbc.pass>hibbrtru</jdbc.pass>
- <jdbc.isolation />
- </properties>
- </profile>
- <!-- The Oracle11g test envionment -->
- <profile>
- <id>oracle11g</id>
- <properties>
- <jdbc.driver.groupId>com.oracle</jdbc.driver.groupId>
- <jdbc.driver.artifactId>ojdbc5</jdbc.driver.artifactId>
- <jdbc.driver.jdbc.driver.version>11.1.0.7.0</jdbc.driver.jdbc.driver.version>
- <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>hibbrtru</jdbc.user>
- <jdbc.pass>hibbrtru</jdbc.pass>
- <jdbc.isolation />
- </properties>
- </profile>
- <!-- The Oracle11gRAC test envionment -->
- <profile>
- <id>oracle11gRAC</id>
- <properties>
- <jdbc.driver.groupId>com.oracle</jdbc.driver.groupId>
- <jdbc.driver.artifactId>ojdbc5</jdbc.driver.artifactId>
- <jdbc.driver.jdbc.driver.version>11.1.0.7.0</jdbc.driver.jdbc.driver.version>
- <scope>test</scope>
- <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>hibbrtru</jdbc.user>
- <jdbc.pass>hibbrtru</jdbc.pass>
- <jdbc.isolation />
- </properties>
- </profile>
- <!-- The Sybase 15 test envionment -->
- <profile>
- <id>sybase15</id>
- <properties>
- <jdbc.driver.groupId>com.sybase</jdbc.driver.groupId>
- <jdbc.driver.artifactId>jconnect</jdbc.driver.artifactId>
- <jdbc.driver.jdbc.driver.version>6.0.5</jdbc.driver.jdbc.driver.version>
- <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/hibbrtru</jdbc.url>
- <jdbc.user>hibbrtru</jdbc.user>
- <jdbc.pass>hibbrtru</jdbc.pass>
- <jdbc.isolation />
- </properties>
- </profile>
- <!-- The SQLServer2005 (MS JDBC) test envionment -->
- <profile>
- <id>mssql2005</id>
- <properties>
- <jdbc.driver.groupId>com.microsoft.sqlserver</jdbc.driver.groupId>
- <jdbc.driver.artifactId>msjdbc</jdbc.driver.artifactId>
- <jdbc.driver.jdbc.driver.version>2.0.1008.2</jdbc.driver.jdbc.driver.version>
- <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>hibbrtru</jdbc.user>
- <jdbc.pass>hibbrtru</jdbc.pass>
- <jdbc.isolation>4096</jdbc.isolation>
- </properties>
- </profile>
-
- <!-- The SQLServer2005 (MS JDBC) test envionment -->
- <profile>
- <id>mssql2005_jtds</id>
- <properties>
- <jdbc.driver.groupId>net.sourceforge.jtds</jdbc.driver.groupId>
- <jdbc.driver.artifactId>jtds</jdbc.driver.artifactId>
- <jdbc.driver.jdbc.driver.version>1.2.4</jdbc.driver.jdbc.driver.version><!-- newest is 1.2.5 but not in repo -->
- <db.dialect>org.hibernate.dialect.SQLServerDialect</db.dialect>
- <jdbc.driver>net.sourceforge.jtds.jdbc.Driver</jdbc.driver>
- <jdbc.url>jdbc:jtds:sqlserver://dev30.qa.atl.jboss.com:3918</jdbc.url>
- <jdbc.user>hibbrtru</jdbc.user>
- <jdbc.pass>hibbrtru</jdbc.pass>
- <jdbc.isolation>4096</jdbc.isolation>
- </properties>
- </profile>
- <!-- The SQLServer2005 (MS JDBC) test envionment -->
- <profile>
- <id>mssql2008</id>
- <properties>
- <jdbc.driver.groupId>com.microsoft.sqlserver</jdbc.driver.groupId>
- <jdbc.driver.artifactId>msjdbc</jdbc.driver.artifactId>
- <jdbc.driver.jdbc.driver.version>2.0.1008.2</jdbc.driver.jdbc.driver.version>
- <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>hibbrtru</jdbc.user>
- <jdbc.pass>hibbrtru</jdbc.pass>
- <jdbc.isolation>4096</jdbc.isolation>
- </properties>
- </profile>
- </profiles>
- </project>
|