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

svn commit: r947741 - in /incubator/bval/trunk: apache-bval/ bundle/ bundle/pom.xml bval-guice/pom.xml bval-tck/pom.xml pom.xml

Author: dwoods
Date: Mon May 24 18:12:49 2010
New Revision: 947741

URL: http://svn.apache.org/viewvc?rev=947741&view=rev
Log:
BVAL-58 Rename OSGi bundle artifact name from apache-bval to fully qualified org.apache.bval.bundle, as suggested by David Jencks.

Added:
    incubator/bval/trunk/bundle/
      - copied from r947731, incubator/bval/trunk/apache-bval/
Removed:
    incubator/bval/trunk/apache-bval/
Modified:
    incubator/bval/trunk/bundle/pom.xml
    incubator/bval/trunk/bval-guice/pom.xml
    incubator/bval/trunk/bval-tck/pom.xml
    incubator/bval/trunk/pom.xml

Modified: incubator/bval/trunk/bundle/pom.xml
URL: http://svn.apache.org/viewvc/incubator/bval/trunk/bundle/pom.xml?rev=947741&r1=947731&r2=947741&view=diff
==============================================================================
--- incubator/bval/trunk/bundle/pom.xml (original)
+++ incubator/bval/trunk/bundle/pom.xml Mon May 24 18:12:49 2010
@@ -30,8 +30,9 @@
         <version>0.1-incubating-SNAPSHOT</version>
     </parent>
 
-    <artifactId>apache-bval</artifactId>
-    <name>Apache Bean Validation :: apache-bval (bundle)</name>
+    <!-- use fully qualified naming for OSGi bundles -->
+    <artifactId>org.apache.bval.bundle</artifactId>
+    <name>Apache Bean Validation :: org.apache.bval.bundle</name>
     <packaging>bundle</packaging>
 
     <description>Apache Bean Validation - Aggregate OSGi Bundle (bval-core + bval-jsr303)</description>
@@ -58,7 +59,7 @@
                     <instructions>
                         <!-- OSGi Bundle Metadata -->
                         <Main-Class>org.apache.bval.util.BeanValidationVersion</Main-Class>
-                        <Implementation-Title>Apache Bean Validation Aggregate JAR</Implementation-Title>
+                        <Implementation-Title>Apache Bean Validation Bundle</Implementation-Title>
                         <Specification-Title>JSR-303 Bean Validation</Specification-Title>
                         <Specification-Vendor>Sun Microsystems, Inc.</Specification-Vendor>
                         <Specification-Version>1.0</Specification-Version>

Modified: incubator/bval/trunk/bval-guice/pom.xml
URL: http://svn.apache.org/viewvc/incubator/bval/trunk/bval-guice/pom.xml?rev=947741&r1=947740&r2=947741&view=diff
==============================================================================
--- incubator/bval/trunk/bval-guice/pom.xml (original)
+++ incubator/bval/trunk/bval-guice/pom.xml Mon May 24 18:12:49 2010
@@ -39,7 +39,7 @@
     <dependencies>
         <dependency>
             <groupId>org.apache.bval</groupId>
-            <artifactId>apache-bval</artifactId>
+            <artifactId>org.apache.bval.bundle</artifactId>
         </dependency>
         <dependency>
             <groupId>com.google.inject</groupId>

Modified: incubator/bval/trunk/bval-tck/pom.xml
URL: http://svn.apache.org/viewvc/incubator/bval/trunk/bval-tck/pom.xml?rev=947741&r1=947740&r2=947741&view=diff
==============================================================================
--- incubator/bval/trunk/bval-tck/pom.xml (original)
+++ incubator/bval/trunk/bval-tck/pom.xml Mon May 24 18:12:49 2010
@@ -34,7 +34,7 @@
     <dependencies>
         <dependency>
             <groupId>org.apache.bval</groupId>
-            <artifactId>apache-bval</artifactId>
+            <artifactId>org.apache.bval.bundle</artifactId>
         </dependency>
     </dependencies>
 
@@ -149,7 +149,7 @@
                                         </artifactItem>
                                         <artifactItem>
                                             <groupId>org.apache.bval</groupId>
-                                            <artifactId>apache-bval</artifactId>
+                                            <artifactId>org.apache.bval.bundle</artifactId>
                                             <version>${project.version}</version>
                                             <overWrite>true</overWrite>
                                             <outputDirectory>${project.build.directory}/dependency/lib</outputDirectory>

Modified: incubator/bval/trunk/pom.xml
URL: http://svn.apache.org/viewvc/incubator/bval/trunk/pom.xml?rev=947741&r1=947740&r2=947741&view=diff
==============================================================================
--- incubator/bval/trunk/pom.xml (original)
+++ incubator/bval/trunk/pom.xml Mon May 24 18:12:49 2010
@@ -153,7 +153,7 @@
             <!-- internal -->
             <dependency>
                 <groupId>org.apache.bval</groupId>
-                <artifactId>apache-bval</artifactId>
+                <artifactId>org.apache.bval.bundle</artifactId>
                 <version>${project.version}</version>
             </dependency>
             <dependency>
@@ -457,7 +457,7 @@
     <modules>
         <module>bval-core</module>
         <module>bval-jsr303</module>
-        <module>apache-bval</module>
+        <module>bundle</module>
         <module>bval-json</module>
         <module>bval-guice</module>
         <module>bval-tck</module>