You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2007/11/26 16:46:30 UTC

svn commit: r598314 - /servicemix/branches/servicemix-3.2/samples/bridge/pom.xml

Author: gnodet
Date: Mon Nov 26 07:46:28 2007
New Revision: 598314

URL: http://svn.apache.org/viewvc?rev=598314&view=rev
Log:
Remove itests from build as they require activemq 5

Modified:
    servicemix/branches/servicemix-3.2/samples/bridge/pom.xml

Modified: servicemix/branches/servicemix-3.2/samples/bridge/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/branches/servicemix-3.2/samples/bridge/pom.xml?rev=598314&r1=598313&r2=598314&view=diff
==============================================================================
--- servicemix/branches/servicemix-3.2/samples/bridge/pom.xml (original)
+++ servicemix/branches/servicemix-3.2/samples/bridge/pom.xml Mon Nov 26 07:46:28 2007
@@ -1,124 +1,126 @@
-<?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.servicemix</groupId>
-        <artifactId>samples</artifactId>
-        <version>3.2.2-SNAPSHOT</version>
-    </parent>
-
-    <groupId>org.apache.servicemix.samples</groupId>
-    <artifactId>bridge</artifactId>
-    <name>ServiceMix :: Samples :: Bridge</name>
-    <packaging>pom</packaging>
-    
-    <modules>
-      <module>bridge-http-su</module>
-      <module>bridge-eip-su</module>
-      <module>bridge-xslt-su</module>
-      <module>bridge-jms-su</module>
-      <module>bridge-sa</module>
-      <module>bridge-sa-itest</module>
-    </modules>
-
-    <!-- Add ServiceMix repositories for snaphots and releases -->
-    <pluginRepositories>
-      <pluginRepository>
-        <id>apache.snapshots</id>
-        <name>Apache Snapshots Repository</name>
-        <url>http://people.apache.org/repo/m2-snapshot-repository</url>
-        <snapshots>
-          <enabled>true</enabled>
-        </snapshots>
-        <releases>
-           <enabled>false</enabled>
-        </releases>
-      </pluginRepository>
-      <pluginRepository>
-        <id>apache.incubating</id>
-        <name>Apache Incubating Repository</name>
-        <url>http://people.apache.org/repo/m2-incubating-repository</url>
-        <snapshots>
-          <enabled>false</enabled>
-        </snapshots>
-        <releases>
-           <enabled>true</enabled>
-        </releases>
-      </pluginRepository>
-    </pluginRepositories>
-    <repositories>
-      <repository>
-        <id>apache.snapshots</id>
-        <name>Apache Snapshots Repository</name>
-        <url>http://people.apache.org/repo/m2-snapshot-repository</url>
-        <snapshots>
-          <enabled>true</enabled>
-        </snapshots>
-        <releases>
-           <enabled>false</enabled>
-        </releases>
-      </repository>
-      <repository>
-        <id>apache.incubating</id>
-        <name>Apache Incubating Repository</name>
-        <url>http://people.apache.org/repo/m2-incubating-repository</url>
-        <snapshots>
-          <enabled>false</enabled>
-        </snapshots>
-        <releases>
-           <enabled>true</enabled>
-        </releases>
-      </repository>
-    </repositories>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-assembly-plugin</artifactId>
-                <version>2.1</version>
-                <inherited>false</inherited>
-                <executions>
-                    <execution>
-                        <id>src</id>
-                        <phase>package</phase>
-                        <goals>
-                            <goal>single</goal>
-                        </goals>
-                        <configuration>
-                            <descriptors>
-                                <descriptor>src/main/assembly/src.xml</descriptor>
-                            </descriptors>
-                        </configuration>
-                    </execution>
-                </executions>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.servicemix.tooling</groupId>
-                <artifactId>jbi-maven-plugin</artifactId>
-                <extensions>true</extensions>
-            </plugin>
-        </plugins>
-    </build>
-</project>
-
+<?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.servicemix</groupId>
+        <artifactId>samples</artifactId>
+        <version>3.2.2-SNAPSHOT</version>
+    </parent>
+
+    <groupId>org.apache.servicemix.samples</groupId>
+    <artifactId>bridge</artifactId>
+    <name>ServiceMix :: Samples :: Bridge</name>
+    <packaging>pom</packaging>
+    
+    <modules>
+      <module>bridge-http-su</module>
+      <module>bridge-eip-su</module>
+      <module>bridge-xslt-su</module>
+      <module>bridge-jms-su</module>
+      <module>bridge-sa</module>
+      <!--
+      <module>bridge-sa-itest</module>
+      -->
+    </modules>
+
+    <!-- Add ServiceMix repositories for snaphots and releases -->
+    <pluginRepositories>
+      <pluginRepository>
+        <id>apache.snapshots</id>
+        <name>Apache Snapshots Repository</name>
+        <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+        <snapshots>
+          <enabled>true</enabled>
+        </snapshots>
+        <releases>
+           <enabled>false</enabled>
+        </releases>
+      </pluginRepository>
+      <pluginRepository>
+        <id>apache.incubating</id>
+        <name>Apache Incubating Repository</name>
+        <url>http://people.apache.org/repo/m2-incubating-repository</url>
+        <snapshots>
+          <enabled>false</enabled>
+        </snapshots>
+        <releases>
+           <enabled>true</enabled>
+        </releases>
+      </pluginRepository>
+    </pluginRepositories>
+    <repositories>
+      <repository>
+        <id>apache.snapshots</id>
+        <name>Apache Snapshots Repository</name>
+        <url>http://people.apache.org/repo/m2-snapshot-repository</url>
+        <snapshots>
+          <enabled>true</enabled>
+        </snapshots>
+        <releases>
+           <enabled>false</enabled>
+        </releases>
+      </repository>
+      <repository>
+        <id>apache.incubating</id>
+        <name>Apache Incubating Repository</name>
+        <url>http://people.apache.org/repo/m2-incubating-repository</url>
+        <snapshots>
+          <enabled>false</enabled>
+        </snapshots>
+        <releases>
+           <enabled>true</enabled>
+        </releases>
+      </repository>
+    </repositories>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-assembly-plugin</artifactId>
+                <version>2.1</version>
+                <inherited>false</inherited>
+                <executions>
+                    <execution>
+                        <id>src</id>
+                        <phase>package</phase>
+                        <goals>
+                            <goal>single</goal>
+                        </goals>
+                        <configuration>
+                            <descriptors>
+                                <descriptor>src/main/assembly/src.xml</descriptor>
+                            </descriptors>
+                        </configuration>
+                    </execution>
+                </executions>
+            </plugin>
+            <plugin>
+                <groupId>org.apache.servicemix.tooling</groupId>
+                <artifactId>jbi-maven-plugin</artifactId>
+                <extensions>true</extensions>
+            </plugin>
+        </plugins>
+    </build>
+</project>
+