You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ni...@apache.org on 2009/10/15 18:51:59 UTC

svn commit: r825558 - in /commons/sandbox/validator2/branches/alternative: ./ src/assembly/ validation-routines/ validation-routines/src/ validation-routines/src/main/ validation-routines/src/main/java/ validation-routines/src/main/java/org/ validation...

Author: niallp
Date: Thu Oct 15 16:51:58 2009
New Revision: 825558

URL: http://svn.apache.org/viewvc?rev=825558&view=rev
Log:
Add validation routines module

Added:
    commons/sandbox/validator2/branches/alternative/validation-routines/
    commons/sandbox/validator2/branches/alternative/validation-routines/pom.xml   (with props)
    commons/sandbox/validator2/branches/alternative/validation-routines/src/
    commons/sandbox/validator2/branches/alternative/validation-routines/src/main/
    commons/sandbox/validator2/branches/alternative/validation-routines/src/main/java/
    commons/sandbox/validator2/branches/alternative/validation-routines/src/main/java/org/
    commons/sandbox/validator2/branches/alternative/validation-routines/src/main/java/org/apache/
    commons/sandbox/validator2/branches/alternative/validation-routines/src/main/java/org/apache/commons/
    commons/sandbox/validator2/branches/alternative/validation-routines/src/main/java/org/apache/commons/validator/
    commons/sandbox/validator2/branches/alternative/validation-routines/src/main/java/org/apache/commons/validator/routines/
      - copied from r797964, commons/proper/validator/trunk/src/main/java/org/apache/commons/validator/routines/
    commons/sandbox/validator2/branches/alternative/validation-routines/src/test/
    commons/sandbox/validator2/branches/alternative/validation-routines/src/test/java/
    commons/sandbox/validator2/branches/alternative/validation-routines/src/test/java/org/
    commons/sandbox/validator2/branches/alternative/validation-routines/src/test/java/org/apache/
    commons/sandbox/validator2/branches/alternative/validation-routines/src/test/java/org/apache/commons/
    commons/sandbox/validator2/branches/alternative/validation-routines/src/test/java/org/apache/commons/validator/
    commons/sandbox/validator2/branches/alternative/validation-routines/src/test/java/org/apache/commons/validator/ResultPair.java
      - copied unchanged from r797964, commons/proper/validator/trunk/src/test/java/org/apache/commons/validator/ResultPair.java
    commons/sandbox/validator2/branches/alternative/validation-routines/src/test/java/org/apache/commons/validator/routines/
      - copied from r797964, commons/proper/validator/trunk/src/test/java/org/apache/commons/validator/routines/
Modified:
    commons/sandbox/validator2/branches/alternative/pom.xml
    commons/sandbox/validator2/branches/alternative/src/assembly/bin.xml
    commons/sandbox/validator2/branches/alternative/src/assembly/src.xml

Modified: commons/sandbox/validator2/branches/alternative/pom.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/validator2/branches/alternative/pom.xml?rev=825558&r1=825557&r2=825558&view=diff
==============================================================================
--- commons/sandbox/validator2/branches/alternative/pom.xml (original)
+++ commons/sandbox/validator2/branches/alternative/pom.xml Thu Oct 15 16:51:58 2009
@@ -40,6 +40,7 @@
     <inceptionYear>2002</inceptionYear>
     <modules>
         <module>validation-api</module>
+        <module>validation-routines</module>
     </modules>
     <scm>
         <connection>scm:svn:http://svn.apache.org/repos/asf/commons/proper/validator/trunk/</connection>

Modified: commons/sandbox/validator2/branches/alternative/src/assembly/bin.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/validator2/branches/alternative/src/assembly/bin.xml?rev=825558&r1=825557&r2=825558&view=diff
==============================================================================
--- commons/sandbox/validator2/branches/alternative/src/assembly/bin.xml (original)
+++ commons/sandbox/validator2/branches/alternative/src/assembly/bin.xml Thu Oct 15 16:51:58 2009
@@ -37,5 +37,10 @@
             <outputDirectory>lib</outputDirectory>
             <includes><include>*.jar</include></includes>
         </fileSet>
+        <fileSet>
+            <directory>validation-routines/target</directory>
+            <outputDirectory>lib</outputDirectory>
+            <includes><include>*.jar</include></includes>
+        </fileSet>
     </fileSets>
 </assembly>

Modified: commons/sandbox/validator2/branches/alternative/src/assembly/src.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/validator2/branches/alternative/src/assembly/src.xml?rev=825558&r1=825557&r2=825558&view=diff
==============================================================================
--- commons/sandbox/validator2/branches/alternative/src/assembly/src.xml (original)
+++ commons/sandbox/validator2/branches/alternative/src/assembly/src.xml Thu Oct 15 16:51:58 2009
@@ -40,5 +40,12 @@
                 <include>pom.xml</include>
             </includes>
         </fileSet>
+        <fileSet>
+            <directory>validation-routines</directory>
+            <includes>
+                <include>src/**</include>
+                <include>pom.xml</include>
+            </includes>
+        </fileSet>
     </fileSets>
 </assembly>

Added: commons/sandbox/validator2/branches/alternative/validation-routines/pom.xml
URL: http://svn.apache.org/viewvc/commons/sandbox/validator2/branches/alternative/validation-routines/pom.xml?rev=825558&view=auto
==============================================================================
--- commons/sandbox/validator2/branches/alternative/validation-routines/pom.xml (added)
+++ commons/sandbox/validator2/branches/alternative/validation-routines/pom.xml Thu Oct 15 16:51:58 2009
@@ -0,0 +1,66 @@
+<?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.
+-->
+
+<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">
+    <modelVersion>4.0.0</modelVersion>
+    <parent>
+        <groupId>org.apache.commons</groupId>
+        <artifactId>commons-validator</artifactId>
+        <version>2.0-SNAPSHOT</version>
+    </parent>
+    <artifactId>commons-validator-routines</artifactId>
+    <version>2.0-SNAPSHOT</version>
+    <name>Validation Routines</name>
+    <description>
+        Validation Routines.
+    </description>
+    <url>http://commons.apache.org/validator/</url>
+    <dependencies>
+        <dependency>
+            <groupId>junit</groupId>
+            <artifactId>junit</artifactId>
+            <version>3.8.2</version>
+            <scope>test</scope>
+        </dependency>
+        <dependency>
+            <groupId>commons-logging</groupId>
+            <artifactId>commons-logging</artifactId>
+            <version>1.1.1</version>
+            <scope>test</scope>
+        </dependency>
+    </dependencies>
+    <properties>
+        <commons.componentid>validator-routines</commons.componentid>
+    </properties>
+    <build>
+        <resources>
+            <resource>
+                <directory>${basedir}/..</directory>
+                <targetPath>META-INF</targetPath>
+                <includes>
+                    <include>NOTICE.txt</include>
+                    <include>LICENSE.txt</include>
+                </includes>
+            </resource>
+        </resources>
+        <plugins>
+        </plugins>
+    </build>
+</project>

Propchange: commons/sandbox/validator2/branches/alternative/validation-routines/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: commons/sandbox/validator2/branches/alternative/validation-routines/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Date Author Id Revision HeadURL