[jboss-cvs] JBossAS SVN: r64893 - in projects/naming/trunk: build and 2 other directories.
jboss-cvs-commits at lists.jboss.org
jboss-cvs-commits at lists.jboss.org
Mon Aug 27 15:40:24 EDT 2007
Author: anil.saldhana at jboss.com
Date: 2007-08-27 15:40:23 -0400 (Mon, 27 Aug 2007)
New Revision: 64893
Added:
projects/naming/trunk/build/
projects/naming/trunk/build/pom.xml
projects/naming/trunk/jnp-client/
projects/naming/trunk/jnp-client/pom.xml
projects/naming/trunk/jnpserver/
projects/naming/trunk/jnpserver/pom.xml
Log:
place the structure in for the naming externalization
Added: projects/naming/trunk/build/pom.xml
===================================================================
--- projects/naming/trunk/build/pom.xml (rev 0)
+++ projects/naming/trunk/build/pom.xml 2007-08-27 19:40:23 UTC (rev 64893)
@@ -0,0 +1,109 @@
+<?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>jboss</groupId>
+ <artifactId>jboss-parent</artifactId>
+ <version>2</version>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <artifactId>jboss-naming</artifactId>
+ <version>5.0.0-SNAPSHOT</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>jboss.maven-plugins</groupId>
+ <artifactId>jboss-deploy-maven-plugin</artifactId>
+ <version>1.3-SNAPSHOT</version>
+ </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>../jnp-client</module>
+ <module>../jnpserver</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: projects/naming/trunk/jnp-client/pom.xml
===================================================================
--- projects/naming/trunk/jnp-client/pom.xml (rev 0)
+++ projects/naming/trunk/jnp-client/pom.xml 2007-08-27 19:40:23 UTC (rev 64893)
@@ -0,0 +1,40 @@
+<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>jboss</groupId>
+ <artifactId>jboss-naming</artifactId>
+ <version>5.0.0-SNAPSHOT</version>
+ <relativePath>../build/pom.xml</relativePath>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>jboss</groupId>
+ <artifactId>jnp-client</artifactId>
+ <version>5.0.0-SNAPSHOT</version>
+ <packaging>jar</packaging>
+ <name>JBoss Naming Client</name>
+ <url>http://www.jboss.org</url>
+ <description>The JBoss Naming Client</description>
+ <dependencies>
+ <dependency>
+ <groupId>apache-log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>1.2.14</version>
+ </dependency>
+ <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>
+ <dependency>
+ <groupId>jboss</groupId>
+ <artifactId>jboss-logging-log4j</artifactId>
+ <version>2.0.2.GA</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+</project>
Added: projects/naming/trunk/jnpserver/pom.xml
===================================================================
--- projects/naming/trunk/jnpserver/pom.xml (rev 0)
+++ projects/naming/trunk/jnpserver/pom.xml 2007-08-27 19:40:23 UTC (rev 64893)
@@ -0,0 +1,40 @@
+<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>jboss</groupId>
+ <artifactId>jboss-naming</artifactId>
+ <version>5.0.0-SNAPSHOT</version>
+ <relativePath>../build/pom.xml</relativePath>
+ </parent>
+ <modelVersion>4.0.0</modelVersion>
+ <groupId>jboss</groupId>
+ <artifactId>jnpserver</artifactId>
+ <version>5.0.0-SNAPSHOT</version>
+ <packaging>jar</packaging>
+ <name>JBoss Naming Server</name>
+ <url>http://www.jboss.org</url>
+ <description>The JBoss Naming Client</description>
+ <dependencies>
+ <dependency>
+ <groupId>apache-log4j</groupId>
+ <artifactId>log4j</artifactId>
+ <version>1.2.14</version>
+ </dependency>
+ <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>
+ <dependency>
+ <groupId>jboss</groupId>
+ <artifactId>jboss-logging-log4j</artifactId>
+ <version>2.0.2.GA</version>
+ <scope>runtime</scope>
+ </dependency>
+ </dependencies>
+</project>
More information about the jboss-cvs-commits
mailing list