[jboss-cvs] Repository SVN: r28626 - in jboss/jnp-client: 5.0.3.GA-brew and 2 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Aug 19 14:14:02 EDT 2009


Author: permaine
Date: 2009-08-19 14:14:01 -0400 (Wed, 19 Aug 2009)
New Revision: 28626

Added:
   jboss/jnp-client/5.0.3.GA-brew/
   jboss/jnp-client/5.0.3.GA-brew/component-info.xml
   jboss/jnp-client/5.0.3.GA-brew/lib/
   jboss/jnp-client/5.0.3.GA-brew/lib/jnp-client-sources.jar
   jboss/jnp-client/5.0.3.GA-brew/lib/jnp-client.jar
   jboss/jnp-client/5.0.3.GA-brew/lib/jnp-client.pom
   jboss/jnp-client/5.0.3.GA-brew/src/
   jboss/jnp-client/5.0.3.GA-brew/src/jboss-naming-5.0.3.tar.gz
Log:
Add Brew build 5.0.3.GA-brew

Added: jboss/jnp-client/5.0.3.GA-brew/component-info.xml
===================================================================
--- jboss/jnp-client/5.0.3.GA-brew/component-info.xml	                        (rev 0)
+++ jboss/jnp-client/5.0.3.GA-brew/component-info.xml	2009-08-19 18:14:01 UTC (rev 28626)
@@ -0,0 +1,17 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<project name="jboss/jnp-client-component-info">
+  <component id="jboss/jnp-client"
+             licenseType="lgpl"
+             version="5.0.3.GA-brew"
+             description="The JBoss Naming Client"
+             scm=":ext:cvs.devel.redhat.com:/cvs/dist/jboss-naming"
+             tag="jboss-naming-5_0_3-2_1_ep5_el4"
+             >
+    <artifact id="jnp-client-sources.jar"/>
+    <artifact id="jnp-client.jar"/>
+
+    <export>
+      <include input="jnp-client.jar"/>
+    </export>
+  </component>
+</project>

Added: jboss/jnp-client/5.0.3.GA-brew/lib/jnp-client-sources.jar
===================================================================
(Binary files differ)


Property changes on: jboss/jnp-client/5.0.3.GA-brew/lib/jnp-client-sources.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: jboss/jnp-client/5.0.3.GA-brew/lib/jnp-client.jar
===================================================================
(Binary files differ)


Property changes on: jboss/jnp-client/5.0.3.GA-brew/lib/jnp-client.jar
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream

Added: jboss/jnp-client/5.0.3.GA-brew/lib/jnp-client.pom
===================================================================
--- jboss/jnp-client/5.0.3.GA-brew/lib/jnp-client.pom	                        (rev 0)
+++ jboss/jnp-client/5.0.3.GA-brew/lib/jnp-client.pom	2009-08-19 18:14:01 UTC (rev 28626)
@@ -0,0 +1,69 @@
+<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 -->
+  <parent>
+    <groupId>org.jboss</groupId>
+    <artifactId>jboss-parent</artifactId>
+    <version>4-beta-2</version>
+  </parent>
+  
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>org.jboss.naming</groupId>
+  <artifactId>jnp-client</artifactId>
+  <name>JBoss Naming Client</name>
+  <version>5.0.3.GA</version>
+  <description>The JBoss Naming Client</description>
+  <url>http://www.jboss.org</url>
+  <build>
+    <plugins>
+      <plugin>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <version>1.1</version>
+        <executions>
+          <execution>
+            <id>buildjar</id>
+            <phase>package</phase>
+            <goals>
+              <goal>run</goal>
+            </goals>
+            <configuration>
+              <tasks>
+                <jar jarfile="${basedir}/target/jnp-client-${project.version}.jar" update="true" manifest="${basedir}/../jnpserver/src/etc/default.mf">
+                  <fileset dir="${basedir}/../jnpserver/target/classes">
+                    <include name="org/jnp/interfaces/**" />
+                    <include name="org/jnp/server/NamingServer_Stub.class" />
+                    <include name="org/jboss/naming/**" />
+                  </fileset>
+                  <fileset file="${basedir}/../JBossORG-EULA.txt" />
+                </jar>
+              </tasks>
+            </configuration>
+          </execution>
+        </executions>
+        <inherited>true</inherited>
+      </plugin>
+    </plugins>
+  </build>
+  
+  <dependencies>
+    <dependency>
+      <groupId>org.jboss</groupId>
+      <artifactId>jboss-common-core</artifactId>
+      <version>2.2.10.GA</version>
+    </dependency>
+    
+    <dependency>
+      <groupId>org.jboss.logging</groupId>
+      <artifactId>jboss-logging-spi</artifactId>
+      <version>2.0.5.GA</version>
+    </dependency>
+    <!--
+    The jnp-client module depends on the jnpserver module at build time
+    in order to copy the classes, but not at runtime.
+    <dependency>
+      <groupId>org.jboss.naming</groupId>
+      <artifactId>jnpserver</artifactId>
+      <version>${project.version}</version>
+    </dependency>
+    -->
+  </dependencies>
+</project>

Added: jboss/jnp-client/5.0.3.GA-brew/src/jboss-naming-5.0.3.tar.gz
===================================================================
(Binary files differ)


Property changes on: jboss/jnp-client/5.0.3.GA-brew/src/jboss-naming-5.0.3.tar.gz
___________________________________________________________________
Name: svn:mime-type
   + application/octet-stream




More information about the jboss-cvs-commits mailing list