45 lines
1.5 KiB
XML
45 lines
1.5 KiB
XML
<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>
|
|
|
|
<parent>
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate-core-parent</artifactId>
|
|
<version>3</version>
|
|
</parent>
|
|
|
|
<groupId>org.hibernate</groupId>
|
|
<artifactId>hibernate-testing</artifactId>
|
|
<version>3.3.0-SNAPSHOT</version>
|
|
<packaging>jar</packaging>
|
|
|
|
<name>Hibernate Testing</name>
|
|
<description>Hibernate JUnit test utilities</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<groupId>${groupId}</groupId>
|
|
<artifactId>hibernate-core</artifactId>
|
|
<version>${version}</version>
|
|
</dependency>
|
|
<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>
|
|
</build>
|
|
</project> |