2010-02-10 14:17:55 -05:00
|
|
|
<?xml version="1.0"?>
|
2011-03-11 19:01:15 -05:00
|
|
|
<!--
|
|
|
|
~ 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
|
|
|
|
-->
|
2008-04-28 11:57:47 -04:00
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
2008-03-18 10:23:51 -04:00
|
|
|
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
2008-04-21 20:55:03 -04:00
|
|
|
|
2008-03-18 10:23:51 -04:00
|
|
|
<parent>
|
|
|
|
<groupId>org.hibernate</groupId>
|
2008-04-21 20:55:03 -04:00
|
|
|
<artifactId>hibernate-parent</artifactId>
|
2011-03-09 19:36:57 -05:00
|
|
|
<version>3.6.3-SNAPSHOT</version>
|
2011-03-11 19:01:15 -05:00
|
|
|
<relativePath>../hibernate-parent/pom.xml</relativePath>
|
2008-03-18 10:23:51 -04:00
|
|
|
</parent>
|
|
|
|
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-testsuite</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>Hibernate Testsuite</name>
|
|
|
|
<description>The testsuite of Hibernate functionality</description>
|
|
|
|
|
2010-08-06 18:00:52 -04:00
|
|
|
<properties>
|
|
|
|
<!-- Skip artifact deployment -->
|
|
|
|
<maven.deploy.skip>true</maven.deploy.skip>
|
2011-03-14 10:34:34 -04:00
|
|
|
<surefire.jvm.parameter></surefire.jvm.parameter>
|
2010-08-06 18:00:52 -04:00
|
|
|
</properties>
|
|
|
|
|
2008-03-18 10:23:51 -04:00
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
2010-10-07 09:51:00 -04:00
|
|
|
<groupId>${project.groupId}</groupId>
|
2008-03-18 10:23:51 -04:00
|
|
|
<artifactId>hibernate-core</artifactId>
|
2010-10-07 09:51:00 -04:00
|
|
|
<version>${project.version}</version>
|
2008-03-18 10:23:51 -04:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2010-10-07 09:51:00 -04:00
|
|
|
<groupId>${project.groupId}</groupId>
|
2008-03-18 10:23:51 -04:00
|
|
|
<artifactId>hibernate-testing</artifactId>
|
2010-10-07 09:51:00 -04:00
|
|
|
<version>${project.version}</version>
|
2008-03-18 10:23:51 -04:00
|
|
|
</dependency>
|
|
|
|
<!-- these are optional on core... :( -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>javassist</groupId>
|
|
|
|
<artifactId>javassist</artifactId>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2009-04-02 12:29:06 -04:00
|
|
|
<groupId>cglib</groupId>
|
|
|
|
<artifactId>cglib</artifactId>
|
2008-03-18 10:23:51 -04:00
|
|
|
</dependency>
|
|
|
|
<!-- optional dom4j dependency; needed here for dom4j (de)serialization -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>jaxen</groupId>
|
|
|
|
<artifactId>jaxen</artifactId>
|
|
|
|
<version>1.1</version>
|
2010-07-30 16:02:23 -04:00
|
|
|
<exclusions>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>xml-apis</groupId>
|
|
|
|
<artifactId>xml-apis</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>xerces</groupId>
|
|
|
|
<artifactId>xercesImpl</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
<exclusion>
|
|
|
|
<groupId>xom</groupId>
|
|
|
|
<artifactId>xom</artifactId>
|
|
|
|
</exclusion>
|
|
|
|
</exclusions>
|
2008-03-18 10:23:51 -04:00
|
|
|
</dependency>
|
2010-07-09 13:52:47 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-validator</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2011-03-10 20:56:11 -05:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.jboss.byteman</groupId>
|
|
|
|
<artifactId>byteman</artifactId>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
2008-03-18 10:23:51 -04:00
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<testResources>
|
|
|
|
<testResource>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
<directory>src/test/java</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**/*.xml</include>
|
|
|
|
</includes>
|
|
|
|
</testResource>
|
|
|
|
<testResource>
|
|
|
|
<filtering>true</filtering>
|
|
|
|
<directory>src/test/resources</directory>
|
|
|
|
</testResource>
|
|
|
|
</testResources>
|
|
|
|
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.5</source>
|
|
|
|
<target>1.5</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.jboss.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-test-ext-plugin</artifactId>
|
|
|
|
<version>1.1.0</version>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<goals>
|
|
|
|
<goal>extend</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-surefire-plugin</artifactId>
|
|
|
|
<configuration>
|
2011-03-10 20:56:11 -05:00
|
|
|
<forkMode>once</forkMode>
|
2011-03-14 10:34:34 -04:00
|
|
|
<argLine>${surefire.jvm.parameter}</argLine>
|
2008-03-18 10:23:51 -04:00
|
|
|
<systemProperties>
|
|
|
|
<property>
|
|
|
|
<name>hibernate.test.validatefailureexpected</name>
|
|
|
|
<value>true</value>
|
|
|
|
</property>
|
|
|
|
</systemProperties>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2010-07-09 13:52:47 -04:00
|
|
|
<profiles>
|
|
|
|
<profile>
|
|
|
|
<id>jaxb</id>
|
|
|
|
<activation>
|
|
|
|
<jdk>1.5</jdk>
|
|
|
|
</activation>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>javax.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-api</artifactId>
|
|
|
|
<version>2.1</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.sun.xml.bind</groupId>
|
|
|
|
<artifactId>jaxb-impl</artifactId>
|
|
|
|
<version>2.1.3</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
</profile>
|
2011-03-14 10:34:34 -04:00
|
|
|
<profile>
|
|
|
|
<id>byteman</id>
|
|
|
|
<activation>
|
|
|
|
<jdk>1.6</jdk>
|
|
|
|
</activation>
|
|
|
|
<properties>
|
|
|
|
<surefire.jvm.parameter>-Dorg.jboss.byteman.verbose=true -javaagent:${settings.localRepository}/org/jboss/byteman/byteman/${bytemanVersion}/byteman-${bytemanVersion}.jar=script:${project.build.testOutputDirectory}/bytemanrules.txt</surefire.jvm.parameter>
|
|
|
|
</properties>
|
|
|
|
</profile>
|
2010-07-09 13:52:47 -04:00
|
|
|
</profiles>
|
|
|
|
|
2009-02-11 00:34:52 -05:00
|
|
|
</project>
|