[hibernate-commits] Hibernate SVN: r15302 - in validator/trunk/hibernate-validator-legacy/src/main: assembly and 1 other directory.

hibernate-commits at lists.jboss.org hibernate-commits at lists.jboss.org
Thu Oct 9 05:14:27 EDT 2008


Author: hardy.ferentschik
Date: 2008-10-09 05:14:27 -0400 (Thu, 09 Oct 2008)
New Revision: 15302

Added:
   validator/trunk/hibernate-validator-legacy/src/main/assembly/
   validator/trunk/hibernate-validator-legacy/src/main/assembly/dist.xml
Log:
Switched from ant build to maven build. Removed ant related resources

Added: validator/trunk/hibernate-validator-legacy/src/main/assembly/dist.xml
===================================================================
--- validator/trunk/hibernate-validator-legacy/src/main/assembly/dist.xml	                        (rev 0)
+++ validator/trunk/hibernate-validator-legacy/src/main/assembly/dist.xml	2008-10-09 09:14:27 UTC (rev 15302)
@@ -0,0 +1,72 @@
+<?xml version='1.0' encoding='UTF-8'?>
+<!--
+  Licensed to the Apache Software Foundation (ASF) under one
+  or more contributor license agreements.  See the NOTICE file
+  distributed with this work for additional information
+  regarding copyright ownership.  The ASF licenses this file
+  to you under the Apache License, Version 2.0 (the
+  "License"); you may not use this file except in compliance
+  with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+  Unless required by applicable law or agreed to in writing,
+  software distributed under the License is distributed on an
+  "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+  KIND, either express or implied.  See the License for the
+  specific language governing permissions and limitations
+  under the License.
+-->
+
+<assembly>
+    <id>dist</id>
+    <formats>
+        <format>tar.gz</format>
+        <format>tar.bz2</format>
+        <format>zip</format>
+    </formats>
+
+    <dependencySets>
+        <dependencySet>
+            <outputDirectory>/dist/lib/runtime</outputDirectory>
+            <scope>runtime</scope>
+            <excludes>
+                <exclude>org.hibernate:hibernate-validator-legacy</exclude>
+            </excludes>
+        </dependencySet>
+        <dependencySet>
+            <outputDirectory>/dist/lib/test</outputDirectory>
+            <scope>test</scope>
+            <excludes>
+                <exclude>org.hibernate:hibernate-validator-legacy</exclude>
+            </excludes>
+        </dependencySet>
+    </dependencySets>
+
+    <fileSets>
+        <fileSet>
+            <directory>target</directory>
+            <outputDirectory>/dist</outputDirectory>
+            <includes>
+                <include>*.jar</include>
+            </includes>
+        </fileSet>
+        <fileSet>
+            <directory>target/site/apidocs</directory>
+            <outputDirectory>/dist/docs/api</outputDirectory>
+        </fileSet>
+        <fileSet>
+            <directory>target/docbook/publish/en-US</directory>
+            <outputDirectory>/dist/docs/manual</outputDirectory>
+        </fileSet>
+        <fileSet>
+            <directory>.</directory>
+            <outputDirectory></outputDirectory>
+            <useDefaultExcludes>true</useDefaultExcludes>
+            <excludes>
+                <exclude>**/target/**</exclude>
+            </excludes>
+        </fileSet>
+    </fileSets>
+
+</assembly>




More information about the hibernate-commits mailing list