Author: chirino
Date: Tue Jun 17 11:24:00 2008
New Revision: 668777
URL: http://svn.apache.org/viewvc?rev=668777&view=rev
Log:
Adding a simpile pom to do a reactor build of all the modules
Added:
servicemix/smx4/all/pom.xml
Added: servicemix/smx4/all/pom.xml
URL:
http://svn.apache.org/viewvc/servicemix/smx4/all/pom.xml?rev=668777&view=auto
==============================================================================
--- servicemix/smx4/all/pom.xml (added)
+++ servicemix/smx4/all/pom.xml Tue Jun 17 11:24:00 2008
@@ -0,0 +1,86 @@
+<?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">
+
+ <!--
+
+ 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.
+ -->
+
+ <modelVersion>4.0.0</modelVersion>
+
+ <parent>
+ <groupId>org.apache</groupId>
+ <artifactId>apache</artifactId>
+ <version>4</version>
+ </parent>
+
+ <groupId>org.apache.servicemix</groupId>
+ <artifactId>all</artifactId>
+ <packaging>pom</packaging>
+
+ <version>1.0-SNAPSHOT</version>
+ <name>Apache ServiceMix All POM</name>
+ <inceptionYear>2007</inceptionYear>
+
+ <modules>
+ <module>kernel</module>
+ <module>specs</module>
+ <module>features</module>
+ <module>nmr</module>
+ <!--
+ <module>legal</module>
+ -->
+ </modules>
+
+ <prerequisites>
+ <maven>2.0.7</maven>
+ </prerequisites>
+
+ <profiles>
+ <profile>
+ <id>setup.eclipse</id>
+ <modules>
+ <module>assembly</module>
+ </modules>
+ <properties>
+
<eclipse.workspace.dir>${basedir}/../workspace</eclipse.workspace.dir>
+ </properties>
+ <build>
+ <defaultGoal>eclipse:eclipse</defaultGoal>
+ <plugins>
+ <plugin>
+ <groupId>org.apache.maven.plugins</groupId>
+ <artifactId>maven-eclipse-plugin</artifactId>
+ <inherited>false</inherited>
+ <executions>
+ <execution>
+ <id>setup.eclipse.workspace</id>
+ <phase>process-test-sources</phase>
+ <goals>
+ <goal>add-maven-repo</goal>
+ </goals>
+ <configuration>
+
<workspace>${eclipse.workspace.dir}</workspace>
+ </configuration>
+ </execution>
+ </executions>
+ </plugin>
+ </plugins>
+ </build>
+ </profile>
+ </profiles>
+
+</project>