[jboss-cvs] Repository SVN: r2241 - in maven2/org/jboss/jboss-naming: 5.0.0.Beta3 and 1 other directory.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Jan 2 13:59:35 EST 2008


Author: anil.saldhana at jboss.com
Date: 2008-01-02 13:59:35 -0500 (Wed, 02 Jan 2008)
New Revision: 2241

Added:
   maven2/org/jboss/jboss-naming/5.0.0.Beta3/
   maven2/org/jboss/jboss-naming/5.0.0.Beta3/jboss-naming-5.0.0.Beta3.pom
   maven2/org/jboss/jboss-naming/5.0.0.Beta3/jboss-naming-5.0.0.Beta3.pom.md5
   maven2/org/jboss/jboss-naming/5.0.0.Beta3/jboss-naming-5.0.0.Beta3.pom.sha1
Modified:
   maven2/org/jboss/jboss-naming/maven-metadata.xml
   maven2/org/jboss/jboss-naming/maven-metadata.xml.md5
   maven2/org/jboss/jboss-naming/maven-metadata.xml.sha1
Log:
checkin 5.0.0.Beta3

Added: maven2/org/jboss/jboss-naming/5.0.0.Beta3/jboss-naming-5.0.0.Beta3.pom
===================================================================
--- maven2/org/jboss/jboss-naming/5.0.0.Beta3/jboss-naming-5.0.0.Beta3.pom	                        (rev 0)
+++ maven2/org/jboss/jboss-naming/5.0.0.Beta3/jboss-naming-5.0.0.Beta3.pom	2008-01-02 18:59:35 UTC (rev 2241)
@@ -0,0 +1,122 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  The parent maven for the naming project that expects a structure like: 
+    build/pom.xml
+    naming-client/pom.xml
+    naming-server/pom.xml
+
+  This pom aggregates the subproject pom, and it also functions as a default 
+  configuration.  The subproject poms each inherit configuration from this one.
+  
+  To build this project maven 2 should be installed and in the system path. 
+  From the command line run "mvn" from the build directory and "install" will 
+  be used as the default goal.  In order to use the "deploy" goal, 
+  the mvn.cvs.root should be specified in settings.xml.
+  
+  To add a module edit the modules section and add the module also to 
+  assembly/bin.xml and assembly.sources.xml.
+-->
+<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>
+    <groupId>org.jboss</groupId>
+    <artifactId>jboss-parent</artifactId>
+    <version>3</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>jboss-naming</artifactId>
+  <version>5.0.0.Beta3</version>
+  <packaging>pom</packaging>
+  <name>JBoss Naming Build</name>
+  <url>http://www.jboss.com</url>
+  <description>
+    The JBoss Naming classes
+  </description>
+  <build>
+    <sourceDirectory>src/main</sourceDirectory>
+    <testSourceDirectory>src/tests</testSourceDirectory>
+    <finalName>${artifactId}</finalName>
+    <resources>
+      <resource>
+        <directory>src/etc</directory>
+        <includes>
+          <include>**/*</include>
+        </includes>
+        <filtering>true</filtering>
+      </resource>
+    </resources>
+    <testResources>
+      <testResource>
+        <directory>src/resources</directory>
+        <includes>
+          <include>**/*</include>
+        </includes>
+        <filtering>true</filtering>
+      </testResource>
+    </testResources>
+    <plugins>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <printSummary>false</printSummary>
+          <testFailureIgnore>true</testFailureIgnore>
+          <includes>
+            <include>**/**TestCase.java</include>
+          </includes>
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.jboss.maven.plugins</groupId>
+        <artifactId>maven-jboss-deploy-plugin</artifactId>
+        <version>1.5-SNAPSHOT</version>
+        <executions>
+          <execution>
+            <id>jboss-deploy</id>
+            <goals>
+              <goal>jboss-deploy</goal>
+            </goals>
+            <phase>deploy</phase>
+          </execution>
+        </executions>
+        <configuration>
+          <groupId>jboss</groupId>
+          <jbossDeployRoot>${jboss.repository.root}</jbossDeployRoot>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  <repositories>
+    <repository>
+      <id>jboss</id>
+      <name>JBoss Repository</name>
+      <layout>default</layout>
+      <url>http://repository.jboss.org/maven2/</url>
+      <snapshots>
+        <enabled>true</enabled>
+      </snapshots>
+    </repository>
+  </repositories>
+  <modules>
+    <module>../jnpserver</module>
+    <module>../jnp-client</module>
+  </modules>
+  <reporting>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-project-info-reports-plugin</artifactId>
+        <reportSets>
+          <reportSet>
+            <reports>
+              <report>dependencies</report>
+              <report>issue-tracking</report>
+              <report>license</report>
+              <report>scm</report>
+            </reports>
+          </reportSet>
+        </reportSets>
+      </plugin>
+    </plugins>
+  </reporting>
+</project>

Added: maven2/org/jboss/jboss-naming/5.0.0.Beta3/jboss-naming-5.0.0.Beta3.pom.md5
===================================================================
--- maven2/org/jboss/jboss-naming/5.0.0.Beta3/jboss-naming-5.0.0.Beta3.pom.md5	                        (rev 0)
+++ maven2/org/jboss/jboss-naming/5.0.0.Beta3/jboss-naming-5.0.0.Beta3.pom.md5	2008-01-02 18:59:35 UTC (rev 2241)
@@ -0,0 +1 @@
+c2e5b88af064a76634fabfc704423f1d
\ No newline at end of file

Added: maven2/org/jboss/jboss-naming/5.0.0.Beta3/jboss-naming-5.0.0.Beta3.pom.sha1
===================================================================
--- maven2/org/jboss/jboss-naming/5.0.0.Beta3/jboss-naming-5.0.0.Beta3.pom.sha1	                        (rev 0)
+++ maven2/org/jboss/jboss-naming/5.0.0.Beta3/jboss-naming-5.0.0.Beta3.pom.sha1	2008-01-02 18:59:35 UTC (rev 2241)
@@ -0,0 +1 @@
+c6a9554bff5d6edb8f516585a66240c9cc3183a1
\ No newline at end of file

Modified: maven2/org/jboss/jboss-naming/maven-metadata.xml
===================================================================
--- maven2/org/jboss/jboss-naming/maven-metadata.xml	2008-01-02 18:25:07 UTC (rev 2240)
+++ maven2/org/jboss/jboss-naming/maven-metadata.xml	2008-01-02 18:59:35 UTC (rev 2241)
@@ -5,7 +5,8 @@
   <versioning>
     <versions>
       <version>5.0.0-Beta3</version>
+      <version>5.0.0.Beta3</version>
     </versions>
-    <lastUpdated>20071124124711</lastUpdated>
+    <lastUpdated>20080102185751</lastUpdated>
   </versioning>
 </metadata>
\ No newline at end of file

Modified: maven2/org/jboss/jboss-naming/maven-metadata.xml.md5
===================================================================
--- maven2/org/jboss/jboss-naming/maven-metadata.xml.md5	2008-01-02 18:25:07 UTC (rev 2240)
+++ maven2/org/jboss/jboss-naming/maven-metadata.xml.md5	2008-01-02 18:59:35 UTC (rev 2241)
@@ -1 +1 @@
-a7dc3b802ad52dd66b47a83b07355d77
\ No newline at end of file
+bdaf0d9a83fd400970248bd17089f775
\ No newline at end of file

Modified: maven2/org/jboss/jboss-naming/maven-metadata.xml.sha1
===================================================================
--- maven2/org/jboss/jboss-naming/maven-metadata.xml.sha1	2008-01-02 18:25:07 UTC (rev 2240)
+++ maven2/org/jboss/jboss-naming/maven-metadata.xml.sha1	2008-01-02 18:59:35 UTC (rev 2241)
@@ -1 +1 @@
-afef870ec8603066257f5dc4ce0626454125a8fc
\ No newline at end of file
+d19358c7f84072c91c75a39c7d48e92a20270476
\ No newline at end of file




More information about the jboss-cvs-commits mailing list