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
|
|
|
|
-->
|
2010-02-10 14:17:55 -05: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-05-04 18:44:42 -04:00
|
|
|
<version>3.6.4.Final</version>
|
2011-03-11 19:01:15 -05:00
|
|
|
<relativePath>../hibernate-parent/pom.xml</relativePath>
|
2008-03-18 10:23:51 -04:00
|
|
|
</parent>
|
2008-04-21 20:55:03 -04:00
|
|
|
|
2008-03-18 10:23:51 -04:00
|
|
|
<groupId>org.hibernate</groupId>
|
|
|
|
<artifactId>hibernate-testing</artifactId>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
<name>Hibernate Testing</name>
|
|
|
|
<description>Hibernate JUnit test utilities</description>
|
|
|
|
|
|
|
|
<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>
|
2010-01-21 15:48:59 -05:00
|
|
|
</dependency>
|
2008-03-18 10:23:51 -04:00
|
|
|
<dependency>
|
|
|
|
<groupId>junit</groupId>
|
|
|
|
<artifactId>junit</artifactId>
|
|
|
|
<!-- here we need to pull JUnit deps into compile scope, as opposed to the normal test scope -->
|
|
|
|
<version>3.8.1</version>
|
|
|
|
<scope>compile</scope>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<resources>
|
|
|
|
<resource>
|
|
|
|
<filtering>false</filtering>
|
|
|
|
<directory>src/main/java</directory>
|
|
|
|
<includes>
|
|
|
|
<include>**/*.hbm.xml</include>
|
|
|
|
</includes>
|
|
|
|
</resource>
|
|
|
|
</resources>
|
2010-01-21 15:48:59 -05:00
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<source>1.5</source>
|
|
|
|
<target>1.5</target>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2008-03-18 10:23:51 -04:00
|
|
|
</build>
|
2009-02-27 23:45:24 -05:00
|
|
|
</project>
|