[jboss-cvs] JBossAS SVN: r70137 - in projects/naming/trunk: jnpclient and 1 other directories.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Feb 26 20:13:36 EST 2008


Author: scott.stark at jboss.org
Date: 2008-02-26 20:13:36 -0500 (Tue, 26 Feb 2008)
New Revision: 70137

Added:
   projects/naming/trunk/jnpclient/pom.xml
   projects/naming/trunk/pom.xml
Modified:
   projects/naming/trunk/jnpclient/
   projects/naming/trunk/jnpserver/
Log:
Refactor again to allow the jnp-client.jar to be released


Property changes on: projects/naming/trunk/jnpclient
___________________________________________________________________
Name: svn:ignore
   + target


Added: projects/naming/trunk/jnpclient/pom.xml
===================================================================
--- projects/naming/trunk/jnpclient/pom.xml	                        (rev 0)
+++ projects/naming/trunk/jnpclient/pom.xml	2008-02-27 01:13:36 UTC (rev 70137)
@@ -0,0 +1,55 @@
+<?xml version="1.0"?><project>
+  <parent>
+    <groupId>org.jboss</groupId>
+    <artifactId>jboss-parent</artifactId>
+    <version>3</version>
+  </parent>
+  <modelVersion>4.0.0</modelVersion>
+  <artifactId>jnp-client</artifactId>
+  <name>JBoss Naming Client</name>
+  <version>5.0.0-SNAPSHOT</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>
+                    <include name="org/jboss/naming/**"></include>
+                  </fileset>
+                  <fileset file="${basedir}/JBossORG-EULA.txt"></fileset>
+                </jar>
+              </tasks>
+            </configuration>
+          </execution>
+        </executions>
+        <inherited>true</inherited>
+      </plugin>
+    </plugins>
+  </build>
+  <dependencies>
+    <dependency>
+      <groupId>jboss</groupId>
+      <artifactId>jboss-common-core</artifactId>
+      <version>2.0.2.GA</version>
+    </dependency>
+    <dependency>
+      <groupId>jboss</groupId>
+      <artifactId>jboss-logging-spi</artifactId>
+      <version>2.0.2.GA</version>
+    </dependency>
+  </dependencies>
+</project>
+


Property changes on: projects/naming/trunk/jnpclient/pom.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + native


Property changes on: projects/naming/trunk/jnpserver
___________________________________________________________________
Name: svn:ignore
   + target


Added: projects/naming/trunk/pom.xml
===================================================================
--- projects/naming/trunk/pom.xml	                        (rev 0)
+++ projects/naming/trunk/pom.xml	2008-02-27 01:13:36 UTC (rev 70137)
@@ -0,0 +1,51 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+  The parent maven for the jndi naming server project
+
+  This pom aggregates the subproject pom
+  
+  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.
+-->
+<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.jboss</groupId>
+    <artifactId>jboss-parent</artifactId>
+    <version>3</version>
+  </parent>
+  <groupId>org.jboss</groupId>
+  <artifactId>jboss-naming-build</artifactId>
+  <version>5.0.0-SNAPSHOT</version>
+  <packaging>pom</packaging>
+  <name>JBoss Naming Build</name>
+  <url>http://www.jboss.com/products/jbossmc</url>
+  <description>
+    The JBoss JNDI name server implementation.
+  </description>
+  <scm>
+    <connection>scm:svn:https://svn.jboss.org/repos/jbossas/projects/naming/trunk</connection>
+  </scm>
+
+  <modules>
+    <module>jnpclient</module>
+    <module>jnpserver</module>
+  </modules>
+
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-release-plugin</artifactId>
+        <version>2.0-beta-7</version>
+        <configuration>
+          <tagBase>https://svn.jboss.org/repos/jbossas/projects/naming/tags</tagBase>
+          <autoVersionSubmodules>true</autoVersionSubmodules>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+  
+</project>
+


Property changes on: projects/naming/trunk/pom.xml
___________________________________________________________________
Name: svn:keywords
   + Id Revision
Name: svn:eol-style
   + native




More information about the jboss-cvs-commits mailing list