You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@bval.apache.org by mb...@apache.org on 2011/05/12 20:29:24 UTC

svn commit: r1102411 - in /incubator/bval/sandbox/lang3-work: ./ bval-jsr303-dynamic/ bval-jsr303-dynamic/provider/ bval-jsr303-dynamic/provider/src/main/java/org/apache/bval/jsr303/dynamic/ bval-jsr303d/

Author: mbenson
Date: Thu May 12 18:29:24 2011
New Revision: 1102411

URL: http://svn.apache.org/viewvc?rev=1102411&view=rev
Log:
create bval-jsr303-dynamic 'umbrella' project and move the current bval-jsr303d to its 'provider' sub-module

Added:
    incubator/bval/sandbox/lang3-work/bval-jsr303-dynamic/
    incubator/bval/sandbox/lang3-work/bval-jsr303-dynamic/pom.xml   (with props)
    incubator/bval/sandbox/lang3-work/bval-jsr303-dynamic/provider/
      - copied from r1091492, incubator/bval/sandbox/lang3-work/bval-jsr303d/
    incubator/bval/sandbox/lang3-work/bval-jsr303-dynamic/provider/src/main/java/org/apache/bval/jsr303/dynamic/DynamicMetaGraphManagerImpl.java
      - copied unchanged from r1091549, incubator/bval/sandbox/lang3-work/bval-jsr303d/src/main/java/org/apache/bval/jsr303/dynamic/DynamicMetaGraphManagerImpl.java
Removed:
    incubator/bval/sandbox/lang3-work/bval-jsr303d/
Modified:
    incubator/bval/sandbox/lang3-work/bval-jsr303-dynamic/provider/pom.xml
    incubator/bval/sandbox/lang3-work/pom.xml

Added: incubator/bval/sandbox/lang3-work/bval-jsr303-dynamic/pom.xml
URL: http://svn.apache.org/viewvc/incubator/bval/sandbox/lang3-work/bval-jsr303-dynamic/pom.xml?rev=1102411&view=auto
==============================================================================
--- incubator/bval/sandbox/lang3-work/bval-jsr303-dynamic/pom.xml (added)
+++ incubator/bval/sandbox/lang3-work/bval-jsr303-dynamic/pom.xml Thu May 12 18:29:24 2011
@@ -0,0 +1,37 @@
+<?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.
+--><!--
+	Maven release plugin requires the project tag to be on a single line.
+--><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>
+    <artifactId>bval-parent</artifactId>
+    <groupId>org.apache.bval</groupId>
+    <version>0.4-incubating-SNAPSHOT</version>
+  </parent>
+  <groupId>org.apache.bval</groupId>
+  <artifactId>bval-jsr303-dynamic</artifactId>
+  <name>Apache Bean Validation :: bval-jsr303-dynamic</name>
+  <version>0.4-incubating-SNAPSHOT</version>
+  <packaging>pom</packaging>
+  <description>Bean Validation - Dynamic JSR303 Validation</description>
+  <modules>
+    <module>provider</module>
+  </modules>
+</project>

Propchange: incubator/bval/sandbox/lang3-work/bval-jsr303-dynamic/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/bval/sandbox/lang3-work/bval-jsr303-dynamic/provider/pom.xml
URL: http://svn.apache.org/viewvc/incubator/bval/sandbox/lang3-work/bval-jsr303-dynamic/provider/pom.xml?rev=1102411&r1=1091492&r2=1102411&view=diff
==============================================================================
--- incubator/bval/sandbox/lang3-work/bval-jsr303-dynamic/provider/pom.xml (original)
+++ incubator/bval/sandbox/lang3-work/bval-jsr303-dynamic/provider/pom.xml Thu May 12 18:29:24 2011
@@ -26,15 +26,15 @@
 
     <parent>
         <groupId>org.apache.bval</groupId>
-        <artifactId>bval-parent</artifactId>
+        <artifactId>bval-jsr303-dynamic</artifactId>
         <version>0.4-incubating-SNAPSHOT</version>
     </parent>
 
-    <artifactId>bval-jsr303d</artifactId>
-    <name>Apache Bean Validation :: bval-jsr303d</name>
-    <packaging>bundle</packaging>
+    <artifactId>bval-jsr303-dynamic-provider</artifactId>
+    <name>Apache Bean Validation :: bval-jsr303-dynamic-provider</name>
+    <packaging>jar</packaging>
 
-    <description>Bean Validation - Dynamic extensions for JSR303</description>
+    <description>Bean Validation - Dynamic JSR303 Validation Provider</description>
 
     <dependencies>
         <dependency>

Modified: incubator/bval/sandbox/lang3-work/pom.xml
URL: http://svn.apache.org/viewvc/incubator/bval/sandbox/lang3-work/pom.xml?rev=1102411&r1=1102410&r2=1102411&view=diff
==============================================================================
--- incubator/bval/sandbox/lang3-work/pom.xml (original)
+++ incubator/bval/sandbox/lang3-work/pom.xml Thu May 12 18:29:24 2011
@@ -16,11 +16,9 @@
  KIND, either express or implied.  See the License for the
  specific language governing permissions and limitations
  under the License.
--->
-<!--
+--><!--
 	Maven release plugin requires the project tag to be on a single line.
--->
-<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">
+--><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>
 
@@ -644,7 +642,7 @@
         <module>bval-json</module>
         <module>bval-guice</module>
         <module>bval-tck</module>
-        <module>bval-jsr303d</module>
+        <module>bval-jsr303-dynamic</module>
   </modules>
 
 </project>