You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by no...@apache.org on 2011/02/25 01:54:28 UTC

svn commit: r1074368 - in /aries/trunk/samples/blueprint/helloworld: helloworld-eba/ helloworld-eba/pom.xml pom.xml

Author: not
Date: Fri Feb 25 00:54:28 2011
New Revision: 1074368

URL: http://svn.apache.org/viewvc?rev=1074368&view=rev
Log:
ARIES-589 deliver eba generating project.

Added:
    aries/trunk/samples/blueprint/helloworld/helloworld-eba/
    aries/trunk/samples/blueprint/helloworld/helloworld-eba/pom.xml   (with props)
Modified:
    aries/trunk/samples/blueprint/helloworld/pom.xml

Added: aries/trunk/samples/blueprint/helloworld/helloworld-eba/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/samples/blueprint/helloworld/helloworld-eba/pom.xml?rev=1074368&view=auto
==============================================================================
--- aries/trunk/samples/blueprint/helloworld/helloworld-eba/pom.xml (added)
+++ aries/trunk/samples/blueprint/helloworld/helloworld-eba/pom.xml Fri Feb 25 00:54:28 2011
@@ -0,0 +1,67 @@
+<?xml version="1.0" encoding="UTF-8"?>
+
+<!--
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+
+  http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+-->
+
+<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.apache.aries.samples.blueprint.helloworld</groupId>
+        <artifactId>helloworld</artifactId>
+        <version>0.4-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>org.apache.aries.samples.blueprint.helloworld</artifactId>
+    <name>Apache Aries Blueprint HelloWorld EBA</name>
+    <description>This is the module that constructs the Hello World application</description>
+    <packaging>eba</packaging>
+
+    <dependencies>
+    	<dependency>
+    		<groupId>org.apache.aries.samples.blueprint.helloworld</groupId>
+    		<artifactId>org.apache.aries.samples.blueprint.helloworld.api</artifactId>
+    	</dependency>
+    	<dependency>
+    		<groupId>org.apache.aries.samples.blueprint.helloworld</groupId>
+    		<artifactId>org.apache.aries.samples.blueprint.helloworld.client</artifactId>
+    	</dependency>
+    	<dependency>
+    		<groupId>org.apache.aries.samples.blueprint.helloworld</groupId>
+    		<artifactId>org.apache.aries.samples.blueprint.helloworld.server</artifactId>
+    	</dependency>
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.aries</groupId>
+                <artifactId>eba-maven-plugin</artifactId>
+                <extensions>true</extensions>
+                <configuration>
+                    <generateManifest>true</generateManifest>
+                    <instructions>
+                        <Application-SymbolicName>${pom.artifactId}</Application-SymbolicName>
+                    </instructions>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Propchange: aries/trunk/samples/blueprint/helloworld/helloworld-eba/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: aries/trunk/samples/blueprint/helloworld/pom.xml
URL: http://svn.apache.org/viewvc/aries/trunk/samples/blueprint/helloworld/pom.xml?rev=1074368&r1=1074367&r2=1074368&view=diff
==============================================================================
--- aries/trunk/samples/blueprint/helloworld/pom.xml (original)
+++ aries/trunk/samples/blueprint/helloworld/pom.xml Fri Feb 25 00:54:28 2011
@@ -60,6 +60,7 @@
 		<module>helloworld-server</module>
 		<module>helloworld-client</module>
 		<module>helloworld-assembly</module> 
+                <module>helloworld-eba</module>
 	</modules>
 
 </project>