[jboss-cvs] JBossAS SVN: r99591 - projects/ejb3/components/nointerface/trunk.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Jan 19 06:19:13 EST 2010


Author: jaikiran
Date: 2010-01-19 06:19:13 -0500 (Tue, 19 Jan 2010)
New Revision: 99591

Added:
   projects/ejb3/components/nointerface/trunk/pom.xml
Log:
EJBTHREE-1989 Aggregator for no-interface component

Added: projects/ejb3/components/nointerface/trunk/pom.xml
===================================================================
--- projects/ejb3/components/nointerface/trunk/pom.xml	                        (rev 0)
+++ projects/ejb3/components/nointerface/trunk/pom.xml	2010-01-19 11:19:13 UTC (rev 99591)
@@ -0,0 +1,48 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<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</version>
+  </parent>
+
+  <!-- Model Information -->
+  <modelVersion>4.0.0</modelVersion>
+  
+    <!-- Artifact Information  -->
+  <groupId>org.jboss.ejb3.nointerface</groupId>
+  <artifactId>jboss-ejb3-nointerface-aggregator</artifactId>
+  <version>1.0.0-SNAPSHOT</version>
+  <packaging>pom</packaging>
+  <name>JBoss EJB 3.1+ no-interface component Aggregator</name>
+  <url>http://www.jboss.org</url>
+  <description>Aggregator for no-interface component</description>
+
+  <!-- Plugin Configuration -->
+  <build>
+    <plugins>
+
+      <!-- Deploy -->
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-deploy-plugin</artifactId>
+        <configuration>
+          <!-- Don't include this aggregator in the deployment -->
+          <skip>true</skip>
+        </configuration>
+      </plugin>
+
+    </plugins>
+  </build>
+
+  <!-- Aggregate Modules -->
+  <modules>
+    <module>spi</module>
+    <module>build</module>
+    <module>impl</module>
+  </modules>
+
+</project>




More information about the jboss-cvs-commits mailing list