37 lines
1.2 KiB
XML
37 lines
1.2 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>1</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... -->
|
|
<version>3.8.1</version>
|
|
<scope>compile</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
</project>
|