[jboss-cvs] Repository SVN: r23237 - in maven2/org/hibernate/hibernate-validator: 4.0.0.Alpha3 and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Mar 20 09:40:42 EDT 2009


Author: hardy.ferentschik
Date: 2009-03-20 09:40:42 -0400 (Fri, 20 Mar 2009)
New Revision: 23237

Added:
   maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/
   maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.jar
   maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.jar.md5
   maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.jar.sha1
   maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.pom
   maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.pom.md5
   maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.pom.sha1
Log:
added alpha3 release of Hibernate Validator

Added: maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.jar
===================================================================
(Binary files differ)


Property changes on: maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.jar.md5
===================================================================
--- maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.jar.md5	                        (rev 0)
+++ maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.jar.md5	2009-03-20 13:40:42 UTC (rev 23237)
@@ -0,0 +1 @@
+e48a6207c4e8605f2abf172485c959ae
\ No newline at end of file

Added: maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.jar.sha1
===================================================================
--- maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.jar.sha1	                        (rev 0)
+++ maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.jar.sha1	2009-03-20 13:40:42 UTC (rev 23237)
@@ -0,0 +1 @@
+88a8361903ffcd8f1dc386add6b60610aaf2f9b9
\ No newline at end of file

Added: maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.pom
===================================================================
--- maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.pom	                        (rev 0)
+++ maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.pom	2009-03-20 13:40:42 UTC (rev 23237)
@@ -0,0 +1,176 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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/maven-v4_0_0.xsd">
+  <parent>
+    <artifactId>hibernate-validator-parent</artifactId>
+    <groupId>org.hibernate</groupId>
+    <version>4.0.0.Alpha3</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.hibernate</groupId>
+  <artifactId>hibernate-validator</artifactId>
+  <name>Hibernate Validator</name>
+  <version>4.0.0.Alpha3</version>
+  <build>
+    <resources>
+      <resource>
+        <filtering>true</filtering>
+        <directory>src/main/resources</directory>
+      </resource>
+    </resources>
+    <plugins>
+      <plugin>
+        <artifactId>maven-shade-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>package</phase>
+            <goals>
+              <goal>shade</goal>
+            </goals>
+            <configuration>
+              <artifactSet>
+                <includes>
+                  <include>com.googlecode.jtype:jtype</include>
+                </includes>
+              </artifactSet>
+              <relocations>
+                <relocation>
+                  <pattern>com.googlecode.jtype</pattern>
+                  <shadedPattern>org.hibernate.validation.jtype</shadedPattern>
+                </relocation>
+              </relocations>
+              <transformers>
+                <transformer />
+              </transformers>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jdocbook-plugin</artifactId>
+        <version>2.1.0</version>
+        <extensions>true</extensions>
+        <executions>
+          <execution>
+            <id>make-doc</id>
+            <phase>site</phase>
+            <goals>
+              <goal>resources</goal>
+              <goal>generate</goal>
+            </goals>
+          </execution>
+        </executions>
+        <dependencies>
+          <dependency>
+            <groupId>org.hibernate</groupId>
+            <artifactId>hibernate-jdocbook-style</artifactId>
+            <version>1.0.2</version>
+            <type>jdocbook-style</type>
+          </dependency>
+        </dependencies>
+        <configuration>
+          <sourceDocumentName>master.xml</sourceDocumentName>
+          <sourceDirectory>${basedir}/src/main/docbook/en-US</sourceDirectory>
+          <masterTranslation>en-US</masterTranslation>
+          <imageResource>
+            <directory>${basedir}/src/main/docbook/en-US/images</directory>
+          </imageResource>
+          <formats>
+            <format>
+              <formatName>pdf</formatName>
+              <stylesheetResource>classpath:/xslt/hibernate/pdf/main-pdf.xsl</stylesheetResource>
+              <finalName>hibernate-validator-guide.pdf</finalName>
+            </format>
+            <format>
+              <formatName>html_single</formatName>
+              <stylesheetResource>classpath:/xslt/hibernate/html/main-single.xsl</stylesheetResource>
+              <finalName>index.html</finalName>
+            </format>
+            <format>
+              <formatName>html</formatName>
+              <stylesheetResource>classpath:/xslt/hibernate/html/main-chunk.xsl</stylesheetResource>
+              <finalName>index.html</finalName>
+            </format>
+          </formats>
+          <options>
+            <xincludeSupported>true</xincludeSupported>
+            <localeSeparator>-</localeSeparator>
+            <useRelativeImageUris>true</useRelativeImageUris>
+          </options>
+        </configuration>
+      </plugin>
+      <plugin>
+        <artifactId>maven-assembly-plugin</artifactId>
+        <executions>
+          <execution>
+            <id>make-assembly</id>
+            <phase>site</phase>
+            <goals>
+              <goal>assembly</goal>
+            </goals>
+          </execution>
+        </executions>
+        <configuration>
+          <descriptors>
+            <descriptor>src/main/assembly/dist.xml</descriptor>
+          </descriptors>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>javax.validation</groupId>
+      <artifactId>validation-api</artifactId>
+      <version>1.0.CR1</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-api</artifactId>
+      <version>1.4.2</version>
+      <scope>compile</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.slf4j</groupId>
+      <artifactId>slf4j-log4j12</artifactId>
+      <version>1.4.2</version>
+      <scope>runtime</scope>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>org.hibernate.java-persistence</groupId>
+      <artifactId>jpa-api</artifactId>
+      <version>2.0.Beta1</version>
+      <scope>compile</scope>
+      <optional>true</optional>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>4.4</version>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>junitperf</groupId>
+      <artifactId>junitperf</artifactId>
+      <version>1.8</version>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
+  <reporting>
+    <plugins>
+      <plugin>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <version>2.0.1</version>
+      </plugin>
+    </plugins>
+  </reporting>
+  <distributionManagement>
+    <site>
+      <id>site</id>
+      <url>http://validator.hibernate.org</url>
+    </site>
+  </distributionManagement>
+</project>
+

Added: maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.pom.md5
===================================================================
--- maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.pom.md5	                        (rev 0)
+++ maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.pom.md5	2009-03-20 13:40:42 UTC (rev 23237)
@@ -0,0 +1 @@
+312071a5376441e4d3aa5c7d2c617003
\ No newline at end of file

Added: maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.pom.sha1
===================================================================
--- maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.pom.sha1	                        (rev 0)
+++ maven2/org/hibernate/hibernate-validator/4.0.0.Alpha3/hibernate-validator-4.0.0.Alpha3.pom.sha1	2009-03-20 13:40:42 UTC (rev 23237)
@@ -0,0 +1 @@
+a069dc9bc652db2d1132fc4a2dc36252ce3715bf
\ No newline at end of file




More information about the jboss-cvs-commits mailing list