[jboss-maven2-commits] Repository SVN: r35899 - maven2/org/hibernate/hibernate-testsuite/3.5.0-Final.

jboss-maven2-commits at lists.jboss.org jboss-maven2-commits at lists.jboss.org
Wed Mar 31 16:28:41 EDT 2010


Author: steve.ebersole at jboss.com
Date: 2010-03-31 16:28:39 -0400 (Wed, 31 Mar 2010)
New Revision: 35899

Added:
   maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.jar
   maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.jar.md5
   maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.jar.sha1
   maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.pom
   maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.pom.md5
   maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.pom.sha1
Log:
uploading Hibernate 3.5.0-Final release

Added: maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.jar
===================================================================
(Binary files differ)


Property changes on: maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.jar.md5
===================================================================
--- maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.jar.md5	                        (rev 0)
+++ maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.jar.md5	2010-03-31 20:28:39 UTC (rev 35899)
@@ -0,0 +1 @@
+b9d7cfb287560e35f50f1541949423fb
\ No newline at end of file

Added: maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.jar.sha1
===================================================================
--- maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.jar.sha1	                        (rev 0)
+++ maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.jar.sha1	2010-03-31 20:28:39 UTC (rev 35899)
@@ -0,0 +1 @@
+ef649af3f64806ba0d69623f40fa133a880aa6e8
\ No newline at end of file

Added: maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.pom
===================================================================
--- maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.pom	                        (rev 0)
+++ maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.pom	2010-03-31 20:28:39 UTC (rev 35899)
@@ -0,0 +1,99 @@
+<?xml version="1.0"?>
+<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-Final</version>
+        <relativePath>../parent/pom.xml</relativePath>
+    </parent>
+    
+    <groupId>org.hibernate</groupId>
+    <artifactId>hibernate-testsuite</artifactId>
+    <packaging>jar</packaging>
+
+    <name>Hibernate Testsuite</name>
+    <description>The testsuite of Hibernate functionality</description>
+
+    <dependencies>
+        <dependency>
+            <groupId>${groupId}</groupId>
+            <artifactId>hibernate-core</artifactId>
+            <version>${version}</version>
+        </dependency>
+        <dependency>
+            <groupId>${groupId}</groupId>
+            <artifactId>hibernate-testing</artifactId>
+            <version>${version}</version>
+        </dependency>
+        <!-- these are optional on core... :( -->
+        <dependency>
+            <groupId>javassist</groupId>
+            <artifactId>javassist</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>cglib</groupId>
+            <artifactId>cglib</artifactId>
+        </dependency>
+        <!-- optional dom4j dependency; needed here for dom4j (de)serialization -->
+        <dependency>
+            <groupId>jaxen</groupId>
+            <artifactId>jaxen</artifactId>
+            <version>1.1</version>
+        </dependency>
+    </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>
+                    <systemProperties>
+                        <property>
+                            <name>hibernate.test.validatefailureexpected</name>
+                            <value>true</value>
+                        </property>
+                    </systemProperties>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+
+</project>

Added: maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.pom.md5
===================================================================
--- maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.pom.md5	                        (rev 0)
+++ maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.pom.md5	2010-03-31 20:28:39 UTC (rev 35899)
@@ -0,0 +1 @@
+c9e562716005180b2842f7a410042ed6
\ No newline at end of file

Added: maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.pom.sha1
===================================================================
--- maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.pom.sha1	                        (rev 0)
+++ maven2/org/hibernate/hibernate-testsuite/3.5.0-Final/hibernate-testsuite-3.5.0-Final.pom.sha1	2010-03-31 20:28:39 UTC (rev 35899)
@@ -0,0 +1 @@
+d6bc7516ab743766c231fb19d7a7d42d7a62ac7a
\ No newline at end of file



More information about the jboss-maven2-commits mailing list