Author: steve.ebersole(a)jboss.com
Date: 2009-11-02 13:57:01 -0500 (Mon, 02 Nov 2009)
New Revision: 30593
Added:
maven2/org/hibernate/hibernate-testing/3.5.0-Beta-2/hibernate-testing-3.5.0-Beta-2.pom
Log:
Wagon: Adding hibernate-testing-3.5.0-Beta-2.pom to repository
Added:
maven2/org/hibernate/hibernate-testing/3.5.0-Beta-2/hibernate-testing-3.5.0-Beta-2.pom
===================================================================
---
maven2/org/hibernate/hibernate-testing/3.5.0-Beta-2/hibernate-testing-3.5.0-Beta-2.pom
(rev 0)
+++
maven2/org/hibernate/hibernate-testing/3.5.0-Beta-2/hibernate-testing-3.5.0-Beta-2.pom 2009-11-02
18:57:01 UTC (rev 30593)
@@ -0,0 +1,45 @@
+<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-parent</artifactId>
+ <version>3.5.0-Beta-2</version>
+ <relativePath>../parent/pom.xml</relativePath>
+ </parent>
+
+ <groupId>org.hibernate</groupId>
+ <artifactId>hibernate-testing</artifactId>
+ <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>