You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by jb...@apache.org on 2010/10/12 22:50:03 UTC

svn commit: r1021918 [2/8] - in /servicemix/smx4/features/trunk: ./ assembly/ assembly/src/main/filtered-resources/ branding/ camel/ camel/servicemix-camel/ cxf/ cxf/cxf-binding-nmr/ cxf/cxf-transport-nmr/ deps/ examples/ examples/bridge-camel/ example...

Modified: servicemix/smx4/features/trunk/camel/servicemix-camel/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/camel/servicemix-camel/pom.xml?rev=1021918&r1=1021917&r2=1021918&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/camel/servicemix-camel/pom.xml (original)
+++ servicemix/smx4/features/trunk/camel/servicemix-camel/pom.xml Tue Oct 12 20:50:01 2010
@@ -1,8 +1,8 @@
 <?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">
+<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/xsd/maven-4.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.
@@ -19,248 +19,228 @@
         limitations under the License.
     -->
 
-    <modelVersion>4.0.0</modelVersion>
-
-    <parent>
-        <groupId>org.apache.servicemix.camel</groupId>
-        <artifactId>camel</artifactId>
-        <version>4.3.0-SNAPSHOT</version>
-    </parent>
-
-    <groupId>org.apache.servicemix.camel</groupId>
-    <artifactId>org.apache.servicemix.camel.component</artifactId>
-    <packaging>bundle</packaging>
-    <version>4.3.0-SNAPSHOT</version>
-    <name>Apache ServiceMix :: Features :: Camel Support :: Component</name>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.servicemix.nmr</groupId>
-            <artifactId>org.apache.servicemix.nmr.osgi</artifactId>
-            <version>${servicemix.nmr.version}</version>
-        </dependency>
-        
-        <dependency>
-            <groupId>org.apache.camel</groupId>
-            <artifactId>camel-core</artifactId>
-            <version>${camel.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.osgi</groupId>
-            <artifactId>org.osgi.core</artifactId>
-            <scope>provided</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.camel</groupId>
-            <artifactId>camel-spring</artifactId>
-            <version>${camel.version}</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.camel</groupId>
-            <artifactId>camel-cxf</artifactId>
-            <version>${camel.version}</version>
-            <exclusions> 
-                <exclusion>
-                    <groupId>org.apache.cxf</groupId>
-                    <artifactId>cxf-rt-core</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.apache.cxf</groupId>
-                    <artifactId>cxf-rt-transports-http</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.apache.cxf</groupId>
-                    <artifactId>cxf-rt-transports-http-jetty</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.apache.cxf</groupId>
-                    <artifactId>cxf-rt-transports-local</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.apache.cxf</groupId>
-                    <artifactId>cxf-rt-frontend-simple</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.apache.cxf</groupId>
-                    <artifactId>cxf-rt-frontend-jaxws</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.apache.cxf</groupId>
-                    <artifactId>cxf-rt-management</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.apache.cxf</groupId>
-                    <artifactId>cxf-testutils</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.apache.cxf</groupId>
-                    <artifactId>cxf-tools-common</artifactId>
-                </exclusion>
-                <exclusion>
-                    <groupId>org.apache.cxf</groupId>
-                    <artifactId>cxf-rt-frontend-jaxrs</artifactId>
-                </exclusion>
-            </exclusions>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.camel</groupId>
-            <artifactId>camel-jetty</artifactId>
-            <version>${camel.version}</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.camel</groupId>
-            <artifactId>camel-http</artifactId>
-            <version>${camel.version}</version>
-        </dependency>
-
-        <dependency>
-            <groupId>org.apache.camel</groupId>
-            <artifactId>camel-test</artifactId>
-            <version>${camel.version}</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>${junit.version}</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-              <groupId>org.apache.cxf</groupId>
-              <artifactId>cxf-testutils</artifactId>
-              <version>${cxf.version}</version>
-              <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.cxf</groupId>
-            <artifactId>cxf-bundle</artifactId>
-            <version>${cxf.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>bouncycastle</groupId>
-            <artifactId>bcprov-jdk14</artifactId>
-            <version>140</version>
-            <scope>runtime</scope>
-        </dependency>
-        <dependency>
-                <groupId>org.apache.geronimo.specs</groupId>
-                <artifactId>geronimo-jaxws_2.1_spec</artifactId>
-                <version>1.0</version>
-      </dependency>
-      <dependency>
-         <groupId>xfire</groupId>
-         <artifactId>opensaml</artifactId>
-         <version>1.0.1</version>
-      </dependency>
-      <dependency>
-         <groupId>com.sun.xml.parsers</groupId>
-         <artifactId>jaxp-ri</artifactId>
-         <version>1.4.2</version>
-      </dependency>
-      <dependency>
-        <groupId>org.codehaus.woodstox</groupId>
-        <artifactId>woodstox-core-asl</artifactId>
-        <version>${woodstox.version}</version>
-        <scope>test</scope>
-      </dependency>
-
-      <dependency>
-        <groupId>org.apache.camel</groupId>
-        <artifactId>camel-core</artifactId>
-        <version>${camel.version}</version>
-        <type>test-jar</type>
-        <scope>test</scope>
-      </dependency>
-      
-      <dependency>
-        <groupId>log4j</groupId>
-        <artifactId>log4j</artifactId>
-        <scope>test</scope>
-      </dependency>
-    </dependencies>
+	<modelVersion>4.0.0</modelVersion>
 
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.felix</groupId>
-                <artifactId>maven-bundle-plugin</artifactId>
-                <configuration>
-                    <instructions>
-                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
-                        <Import-Package>*</Import-Package>
-                        <Export-Package>org.apache.servicemix.camel.nmr*</Export-Package>
-                    </instructions>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-surefire-plugin</artifactId>
-                <configuration>
-                    <forkMode>pertest</forkMode>
-                    <systemProperties>
-                        <property>
-                            <name>javax.xml.parsers.DocumentBuilderFactory</name>
-                            <value>com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl</value>
-                        </property>
-                        <property>
-                            <name>javax.xml.datatype.DatatypeFactory</name>
-                            <value>com.sun.org.apache.xerces.internal.jaxp.datatype.DatatypeFactoryImpl</value>
-                        </property>
-                        <property>
-                            <name>javax.xml.parsers.SAXParserFactory</name>
-                            <value>com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl</value>
-                        </property>
-                        <property>
-                            <name>javax.xml.stream.XMLInputFactory</name>
-                            <value>com.ctc.wstx.stax.WstxInputFactory</value>
-                        </property>
-                        <property>
-                            <name>javax.xml.stream.XMLOutputFactory</name>
-                            <value>com.ctc.wstx.stax.WstxOutputFactory</value>
-                        </property>
-                    </systemProperties>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.cxf</groupId>
-                <artifactId>cxf-codegen-plugin</artifactId>
-                <version>${cxf.version}</version>
-                <executions>
-                <execution>
-                        <id>generate-test-sources</id>
-                        <phase>generate-sources</phase>
-                        <configuration>
-                                <sourceRoot>${basedir}/target/generated/test/java</sourceRoot>
-                                <wsdlOptions>
-                                        <wsdlOption>
-                                                <wsdl>${basedir}/src/test/resources/person.wsdl</wsdl>
-                                                <extraargs>
-                                                        <extraarg>-verbose</extraarg>
-                                                </extraargs>
-                                        </wsdlOption>
-                                </wsdlOptions>
-                        </configuration>
-                        <goals>
-                                <goal>wsdl2java</goal>
-                        </goals>
-                </execution>
-        </executions>
-      </plugin>
-      <!-- exclude generated class from cxf-codegen-plugin -->
-      <plugin>
-        <groupId>org.codehaus.mojo</groupId>
-        <artifactId>cobertura-maven-plugin</artifactId>
-        <configuration>
-          <instrumentation>
-            <excludes>
-              <exclude>org/apache/servicemix/samples/wsdl_first/*.class</exclude>
-            </excludes>
-          </instrumentation>
-        </configuration>
-      </plugin>
-         </plugins>
-    </build>
+	<parent>
+		<groupId>org.apache.servicemix.camel</groupId>
+		<artifactId>camel</artifactId>
+		<version>4.3.0-SNAPSHOT</version>
+	</parent>
+
+	<artifactId>org.apache.servicemix.camel.component</artifactId>
+	<packaging>bundle</packaging>
+	<name>Apache ServiceMix :: Features :: Camel Support :: Component</name>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.servicemix.nmr</groupId>
+			<artifactId>org.apache.servicemix.nmr.osgi</artifactId>
+		</dependency>
+		<dependency>
+		    <groupId>org.apache.servicemix.nmr</groupId>
+		    <artifactId>org.apache.servicemix.nmr.core</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.camel</groupId>
+			<artifactId>camel-core</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.osgi</groupId>
+			<artifactId>org.osgi.core</artifactId>
+			<scope>provided</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.camel</groupId>
+			<artifactId>camel-spring</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.camel</groupId>
+			<artifactId>camel-cxf</artifactId>
+			<exclusions>
+				<exclusion>
+					<groupId>org.apache.cxf</groupId>
+					<artifactId>cxf-rt-core</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>org.apache.cxf</groupId>
+					<artifactId>cxf-rt-transports-http</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>org.apache.cxf</groupId>
+					<artifactId>cxf-rt-transports-http-jetty</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>org.apache.cxf</groupId>
+					<artifactId>cxf-rt-transports-local</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>org.apache.cxf</groupId>
+					<artifactId>cxf-rt-frontend-simple</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>org.apache.cxf</groupId>
+					<artifactId>cxf-rt-frontend-jaxws</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>org.apache.cxf</groupId>
+					<artifactId>cxf-rt-management</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>org.apache.cxf</groupId>
+					<artifactId>cxf-testutils</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>org.apache.cxf</groupId>
+					<artifactId>cxf-tools-common</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>org.apache.cxf</groupId>
+					<artifactId>cxf-rt-frontend-jaxrs</artifactId>
+				</exclusion>
+			</exclusions>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.camel</groupId>
+			<artifactId>camel-jetty</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.camel</groupId>
+			<artifactId>camel-http</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.camel</groupId>
+			<artifactId>camel-test</artifactId>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.cxf</groupId>
+			<artifactId>cxf-testutils</artifactId>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.cxf</groupId>
+			<artifactId>cxf-bundle</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>bouncycastle</groupId>
+			<artifactId>bcprov-jdk14</artifactId>
+			<scope>runtime</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.geronimo.specs</groupId>
+			<artifactId>geronimo-jaxws_2.1_spec</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>xfire</groupId>
+			<artifactId>opensaml</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>com.sun.xml.parsers</groupId>
+			<artifactId>jaxp-ri</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.codehaus.woodstox</groupId>
+			<artifactId>woodstox-core-asl</artifactId>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.camel</groupId>
+			<artifactId>camel-core</artifactId>
+			<type>test-jar</type>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>log4j</groupId>
+			<artifactId>log4j</artifactId>
+			<scope>test</scope>
+		</dependency>
+	</dependencies>
+
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.felix</groupId>
+				<artifactId>maven-bundle-plugin</artifactId>
+				<configuration>
+					<instructions>
+						<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+						<Import-Package>*</Import-Package>
+						<Export-Package>org.apache.servicemix.camel.nmr*</Export-Package>
+					</instructions>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-surefire-plugin</artifactId>
+				<configuration>
+					<forkMode>pertest</forkMode>
+					<systemProperties>
+						<property>
+							<name>javax.xml.parsers.DocumentBuilderFactory</name>
+							<value>com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl</value>
+						</property>
+						<property>
+							<name>javax.xml.datatype.DatatypeFactory</name>
+							<value>com.sun.org.apache.xerces.internal.jaxp.datatype.DatatypeFactoryImpl</value>
+						</property>
+						<property>
+							<name>javax.xml.parsers.SAXParserFactory</name>
+							<value>com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl</value>
+						</property>
+						<property>
+							<name>javax.xml.stream.XMLInputFactory</name>
+							<value>com.ctc.wstx.stax.WstxInputFactory</value>
+						</property>
+						<property>
+							<name>javax.xml.stream.XMLOutputFactory</name>
+							<value>com.ctc.wstx.stax.WstxOutputFactory</value>
+						</property>
+					</systemProperties>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.cxf</groupId>
+				<artifactId>cxf-codegen-plugin</artifactId>
+				<version>${cxf.version}</version>
+				<executions>
+					<execution>
+						<id>generate-test-sources</id>
+						<phase>generate-sources</phase>
+						<configuration>
+							<sourceRoot>${basedir}/target/generated/test/java</sourceRoot>
+							<wsdlOptions>
+								<wsdlOption>
+									<wsdl>${basedir}/src/test/resources/person.wsdl</wsdl>
+									<extraargs>
+										<extraarg>-verbose</extraarg>
+									</extraargs>
+								</wsdlOption>
+							</wsdlOptions>
+						</configuration>
+						<goals>
+							<goal>wsdl2java</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<!-- exclude generated class from cxf-codegen-plugin -->
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>cobertura-maven-plugin</artifactId>
+				<configuration>
+					<instrumentation>
+						<excludes>
+							<exclude>org/apache/servicemix/samples/wsdl_first/*.class</exclude>
+						</excludes>
+					</instrumentation>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
 
 </project>

Modified: servicemix/smx4/features/trunk/cxf/cxf-binding-nmr/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/cxf/cxf-binding-nmr/pom.xml?rev=1021918&r1=1021917&r2=1021918&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/cxf/cxf-binding-nmr/pom.xml (original)
+++ servicemix/smx4/features/trunk/cxf/cxf-binding-nmr/pom.xml Tue Oct 12 20:50:01 2010
@@ -1,7 +1,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">
-
+<?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/xsd/maven-4.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.
@@ -18,227 +19,205 @@
         limitations under the License.
     -->
 
-    <modelVersion>4.0.0</modelVersion>
+	<modelVersion>4.0.0</modelVersion>
 
-    <parent>
-	    <groupId>org.apache.servicemix.cxf</groupId>
-	    <artifactId>cxf</artifactId>
-        <version>4.3.0-SNAPSHOT</version>
-    </parent>
-
-    <groupId>org.apache.servicemix.cxf</groupId>
-    <artifactId>org.apache.servicemix.cxf.binding.nmr</artifactId>
-    <packaging>bundle</packaging>
-    <version>4.3.0-SNAPSHOT</version>
-    <name>Apache ServiceMix :: Features :: CXF Support :: Binding For NMR</name>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.servicemix.nmr</groupId>
-            <artifactId>org.apache.servicemix.nmr.api</artifactId>
-            <version>${servicemix.nmr.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.servicemix.nmr</groupId>
-            <artifactId>org.apache.servicemix.nmr.core</artifactId>
-            <version>${servicemix.nmr.version}</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.cxf</groupId>
-            <artifactId>cxf-bundle</artifactId>
-            <version>${cxf.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.cxf</groupId>
-            <artifactId>cxf-testutils</artifactId>
-            <version>${cxf.version}</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.geronimo.specs</groupId>
-            <artifactId>geronimo-ws-metadata_2.0_spec</artifactId>
-            <version>${geronimo-ws-metadata.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.geronimo.specs</groupId>
-            <artifactId>geronimo-annotation_1.1_spec</artifactId>
-            <version>${geronimo-annotation.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.servicemix.specs</groupId>
-            <artifactId>org.apache.servicemix.specs.stax-api-1.0</artifactId>
-            <version>${servicemix.specs.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>${junit.version}</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.easymock</groupId>
-            <artifactId>easymockclassextension</artifactId>
-            <version>${easymock.version}</version>
-            <scope>test</scope>
-        </dependency>
-
-    </dependencies>
-
-    <build>
-        <plugins>
-            <!-- Bundle generation -->
-            <plugin>
-                <groupId>org.apache.felix</groupId>
-                <artifactId>maven-bundle-plugin</artifactId>
-                <configuration>
-                    <instructions>
-                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
-                        <Import-Package>
-                            javax.xml.stream;version="[0.0,2)",
-                            *
+	<parent>
+		<groupId>org.apache.servicemix.cxf</groupId>
+		<artifactId>cxf</artifactId>
+		<version>4.3.0-SNAPSHOT</version>
+	</parent>
+
+	<artifactId>org.apache.servicemix.cxf.binding.nmr</artifactId>
+	<packaging>bundle</packaging>
+	<name>Apache ServiceMix :: Features :: CXF Support :: Binding For NMR</name>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.servicemix.nmr</groupId>
+			<artifactId>org.apache.servicemix.nmr.api</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.servicemix.nmr</groupId>
+			<artifactId>org.apache.servicemix.nmr.core</artifactId>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.cxf</groupId>
+			<artifactId>cxf-bundle</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.cxf</groupId>
+			<artifactId>cxf-testutils</artifactId>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.geronimo.specs</groupId>
+			<artifactId>geronimo-ws-metadata_2.0_spec</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.geronimo.specs</groupId>
+			<artifactId>geronimo-annotation_1.1_spec</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.servicemix.specs</groupId>
+			<artifactId>org.apache.servicemix.specs.stax-api-1.0</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.easymock</groupId>
+			<artifactId>easymockclassextension</artifactId>
+			<scope>test</scope>
+		</dependency>
+	</dependencies>
+
+	<build>
+		<plugins>
+			<!-- Bundle generation -->
+			<plugin>
+				<groupId>org.apache.felix</groupId>
+				<artifactId>maven-bundle-plugin</artifactId>
+				<configuration>
+					<instructions>
+						<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+						<Import-Package>
+							javax.xml.stream;version="[0.0,2)",
+							*
                         </Import-Package>
-                        <!-- Needed for jaxb annotations classes -->
-                        <DynamicImport-Package>*</DynamicImport-Package>
-                        <Export-Package>
-                            ${project.artifactId}*,
-                            '=META-INF.cxf.binding.nmr'
+						<!-- Needed for jaxb annotations classes -->
+						<DynamicImport-Package>*</DynamicImport-Package>
+						<Export-Package>
+							${project.artifactId}*,
+							'=META-INF.cxf.binding.nmr'
                         </Export-Package>
-                        <Private-Package />
-                        <_failok>true</_failok>
-                        <Spring-Context>*;publish-context:=false</Spring-Context>
-                        <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
-                    </instructions>
-                </configuration>
-            </plugin>
-            <!-- generate dependencies versions -->
-            <plugin>
-                <groupId>org.apache.servicemix.tooling</groupId>
-                <artifactId>depends-maven-plugin</artifactId>
-                <version>${depends-maven-plugin.version}</version>
-                <executions>
-                    <execution>
-                        <id>generate-depends-file</id>
-                        <goals>
-                            <goal>generate-depends-file</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-surefire-plugin</artifactId>
-                <configuration>
-                    <forkMode>pertest</forkMode>
-                    <systemProperties>
-                        <property>
-                            <name>javax.xml.parsers.DocumentBuilderFactory</name>
-                            <value>com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl</value>
-                        </property>
-                        <property>
-                            <name>javax.xml.datatype.DatatypeFactory</name>
-                            <value>com.sun.org.apache.xerces.internal.jaxp.datatype.DatatypeFactoryImpl</value>
-                        </property>
-                        <property>
-                            <name>javax.xml.parsers.SAXParserFactory</name>
-                            <value>com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl</value>
-                        </property>
-                    </systemProperties>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.cxf</groupId>
-                <artifactId>cxf-codegen-plugin</artifactId>
-                <version>${cxf.version}</version>
-                <executions>
-                    <execution>
-                        <id>generate-test-sources</id>
-                        <phase>generate-sources</phase>
-                        <configuration>
-                                <sourceRoot>${basedir}/target/generated</sourceRoot>
-                                <wsdlOptions>
-                                        <wsdlOption>
-                                                <wsdl>${basedir}/src/test/resources/hello_world_nmr.wsdl</wsdl>
-                                                <extraargs>
-                                                        <extraarg>-verbose</extraarg>
-                                                </extraargs>
-                                        </wsdlOption>
-                                </wsdlOptions>
-                        </configuration>
-                        <goals>
-                                <goal>wsdl2java</goal>
-                        </goals>
-                    </execution>
-                </executions>
-             </plugin>
-
-        </plugins>
-    </build>
-
-    <profiles>
-        <profile>
-      <id>ibmjdk</id>
-      <activation>
-        <property>
-          <name>java.vendor</name>
-          <value>IBM Corporation</value>
-        </property>
-      </activation>
-      <!--
-        Add the Sun jaxp-ri as a dependency when using the ibm jdk, so that
-        cxf's dependency on the Sun saaj can work with the ibm jdk.
-      -->
-      <dependencies>
-        <dependency>
-          <groupId>com.sun.xml.parsers</groupId>
-          <artifactId>jaxp-ri</artifactId>
-          <version>1.4.2</version>
-        </dependency>
-      </dependencies>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-surefire-plugin</artifactId>
-            <configuration>
-              <includes>
-                <include>**/*Test*</include>
-              </includes>
-              <excludes>
-                <exclude>**/*$*</exclude>
-              </excludes>
-              <forkMode>${surefire.fork.mode}</forkMode>
-              <systemProperties>
-                <property>
-                  <name>derby.system.home</name>
-                  <value>${basedir}/target/derby</value>
-                </property>
-                <!--
-                  With Maven 2.0.7, it's possible that jaxp-ri will be placed
-                  in front of woodstox on the classpath. If this happens, cxf
-                  will not use woodstox, causing test failures (e.g.,
-                  CxfBcProviderConsumerMtomTest). So, set these properties to
-                  ensure woodstox is used.  Maven 2.0.9 doesn't require this
-                  work-around since it consistently places jaxp-ri at the end
-                  of the dependencies.
-                -->
-                <property>
-                  <name>javax.xml.stream.XMLInputFactory</name>
-                  <value>com.ctc.wstx.stax.WstxInputFactory</value>
-                </property>
-                <property>
-                  <name>javax.xml.stream.XMLOutputFactory</name>
-                  <value>com.ctc.wstx.stax.WstxOutputFactory</value>
-                </property>
-              </systemProperties>
-            </configuration>
-          </plugin>
-
-        </plugins>
-      </build>
-    </profile>
-
-    </profiles>
-
+						<Private-Package />
+						<_failok>true</_failok>
+						<Spring-Context>*;publish-context:=false</Spring-Context>
+						<_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
+					</instructions>
+				</configuration>
+			</plugin>
+			<!-- generate dependencies versions -->
+			<plugin>
+				<groupId>org.apache.servicemix.tooling</groupId>
+				<artifactId>depends-maven-plugin</artifactId>
+				<version>${depends-maven-plugin.version}</version>
+				<executions>
+					<execution>
+						<id>generate-depends-file</id>
+						<goals>
+							<goal>generate-depends-file</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-surefire-plugin</artifactId>
+				<configuration>
+					<forkMode>pertest</forkMode>
+					<systemProperties>
+						<property>
+							<name>javax.xml.parsers.DocumentBuilderFactory</name>
+							<value>com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl</value>
+						</property>
+						<property>
+							<name>javax.xml.datatype.DatatypeFactory</name>
+							<value>com.sun.org.apache.xerces.internal.jaxp.datatype.DatatypeFactoryImpl</value>
+						</property>
+						<property>
+							<name>javax.xml.parsers.SAXParserFactory</name>
+							<value>com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl</value>
+						</property>
+					</systemProperties>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.cxf</groupId>
+				<artifactId>cxf-codegen-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>generate-test-sources</id>
+						<phase>generate-sources</phase>
+						<configuration>
+							<sourceRoot>${basedir}/target/generated</sourceRoot>
+							<wsdlOptions>
+								<wsdlOption>
+									<wsdl>${basedir}/src/test/resources/hello_world_nmr.wsdl</wsdl>
+									<extraargs>
+										<extraarg>-verbose</extraarg>
+									</extraargs>
+								</wsdlOption>
+							</wsdlOptions>
+						</configuration>
+						<goals>
+							<goal>wsdl2java</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+
+		</plugins>
+	</build>
+
+	<profiles>
+		<profile>
+			<id>ibmjdk</id>
+			<activation>
+				<property>
+					<name>java.vendor</name>
+					<value>IBM Corporation</value>
+				</property>
+			</activation>
+			<!-- Add the Sun jaxp-ri as a dependency when using the ibm jdk, so that 
+				cxf's dependency on the Sun saaj can work with the ibm jdk. -->
+			<dependencies>
+				<dependency>
+					<groupId>com.sun.xml.parsers</groupId>
+					<artifactId>jaxp-ri</artifactId>
+				</dependency>
+			</dependencies>
+			<build>
+				<plugins>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-surefire-plugin</artifactId>
+						<configuration>
+							<includes>
+								<include>**/*Test*</include>
+							</includes>
+							<excludes>
+								<exclude>**/*$*</exclude>
+							</excludes>
+							<forkMode>${surefire.fork.mode}</forkMode>
+							<systemProperties>
+								<property>
+									<name>derby.system.home</name>
+									<value>${basedir}/target/derby</value>
+								</property>
+								<!-- With Maven 2.0.7, it's possible that jaxp-ri will be placed 
+									in front of woodstox on the classpath. If this happens, cxf will not use 
+									woodstox, causing test failures (e.g., CxfBcProviderConsumerMtomTest). So, 
+									set these properties to ensure woodstox is used. Maven 2.0.9 doesn't require 
+									this work-around since it consistently places jaxp-ri at the end of the dependencies. -->
+								<property>
+									<name>javax.xml.stream.XMLInputFactory</name>
+									<value>com.ctc.wstx.stax.WstxInputFactory</value>
+								</property>
+								<property>
+									<name>javax.xml.stream.XMLOutputFactory</name>
+									<value>com.ctc.wstx.stax.WstxOutputFactory</value>
+								</property>
+							</systemProperties>
+						</configuration>
+					</plugin>
+
+				</plugins>
+			</build>
+		</profile>
+	</profiles>
 
 </project>

Modified: servicemix/smx4/features/trunk/cxf/cxf-transport-nmr/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/cxf/cxf-transport-nmr/pom.xml?rev=1021918&r1=1021917&r2=1021918&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/cxf/cxf-transport-nmr/pom.xml (original)
+++ servicemix/smx4/features/trunk/cxf/cxf-transport-nmr/pom.xml Tue Oct 12 20:50:01 2010
@@ -1,7 +1,8 @@
+<?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.
@@ -18,245 +19,225 @@
         limitations under the License.
     -->
 
-    <modelVersion>4.0.0</modelVersion>
+	<modelVersion>4.0.0</modelVersion>
 
-    <parent>
-	    <groupId>org.apache.servicemix.cxf</groupId>
-	    <artifactId>cxf</artifactId>
-        <version>4.3.0-SNAPSHOT</version>
-    </parent>
-
-    <groupId>org.apache.servicemix.cxf</groupId>
-    <artifactId>org.apache.servicemix.cxf.transport.nmr</artifactId>
-    <packaging>bundle</packaging>
-    <version>4.3.0-SNAPSHOT</version>
-    <name>Apache ServiceMix :: Features :: CXF Support :: Transport For NMR</name>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.servicemix.nmr</groupId>
-            <artifactId>org.apache.servicemix.nmr.api</artifactId>
-            <version>${servicemix.nmr.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.cxf</groupId>
-            <artifactId>cxf-bundle</artifactId>
-            <version>${cxf.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.geronimo.specs</groupId>
-            <artifactId>geronimo-ws-metadata_2.0_spec</artifactId>
-            <version>${geronimo-ws-metadata.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.geronimo.specs</groupId>
-            <artifactId>geronimo-annotation_1.1_spec</artifactId>
-            <version>${geronimo-annotation.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.geronimo.specs</groupId>
-            <artifactId>geronimo-servlet_2.5_spec</artifactId>
-            <version>${geronimo-servlet.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.servicemix.specs</groupId>
-            <artifactId>org.apache.servicemix.specs.jaxb-api-${jaxb.api.version}</artifactId>
-            <version>${servicemix.specs.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <version>${junit.version}</version>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.easymock</groupId>
-            <artifactId>easymockclassextension</artifactId>
-            <version>${easymock.version}</version>
-            <scope>test</scope>
-        </dependency>
-    </dependencies>
-
-    <build>
-        <plugins>
-            <!-- Bundle generation -->
-            <plugin>
-                <groupId>org.apache.felix</groupId>
-                <artifactId>maven-bundle-plugin</artifactId>
-                <configuration>
-                    <instructions>
-                        <Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
-                        <Import-Package>
-                            javax.xml.bind*;version="[0.0,3)",
-                            javax.activation;version="[0.0,2)",
-                            javax.annotation;version="[0.0,2)",
-                            javax.jws*;version="[0.0,3)",
-                            *
+	<parent>
+		<groupId>org.apache.servicemix.cxf</groupId>
+		<artifactId>cxf</artifactId>
+		<version>4.3.0-SNAPSHOT</version>
+	</parent>
+
+	<artifactId>org.apache.servicemix.cxf.transport.nmr</artifactId>
+	<packaging>bundle</packaging>
+	<name>Apache ServiceMix :: Features :: CXF Support :: Transport For NMR</name>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.servicemix.nmr</groupId>
+			<artifactId>org.apache.servicemix.nmr.api</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.cxf</groupId>
+			<artifactId>cxf-bundle</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.geronimo.specs</groupId>
+			<artifactId>geronimo-ws-metadata_2.0_spec</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.geronimo.specs</groupId>
+			<artifactId>geronimo-annotation_1.1_spec</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.geronimo.specs</groupId>
+			<artifactId>geronimo-servlet_2.5_spec</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.servicemix.specs</groupId>
+			<artifactId>org.apache.servicemix.specs.jaxb-api-2.1</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>junit</groupId>
+			<artifactId>junit</artifactId>
+			<scope>test</scope>
+		</dependency>
+		<dependency>
+			<groupId>org.easymock</groupId>
+			<artifactId>easymockclassextension</artifactId>
+			<scope>test</scope>
+		</dependency>
+	</dependencies>
+
+	<build>
+		<plugins>
+			<!-- Bundle generation -->
+			<plugin>
+				<groupId>org.apache.felix</groupId>
+				<artifactId>maven-bundle-plugin</artifactId>
+				<configuration>
+					<instructions>
+						<Bundle-SymbolicName>${project.artifactId}</Bundle-SymbolicName>
+						<Import-Package>
+							javax.xml.bind*;version="[0.0,3)",
+							javax.activation;version="[0.0,2)",
+							javax.annotation;version="[0.0,2)",
+							javax.jws*;version="[0.0,3)",
+							*
                         </Import-Package>
-                        <!-- Needed for jaxb annotations classes -->
-                        <DynamicImport-Package>*</DynamicImport-Package>
-                        <Export-Package>
-                            ${project.artifactId}*,
-                            org.apache.cxf.transports.nmr,
-                            '=META-INF.cxf.transport.nmr'
+						<!-- Needed for jaxb annotations classes -->
+						<DynamicImport-Package>*</DynamicImport-Package>
+						<Export-Package>
+							${project.artifactId}*,
+							org.apache.cxf.transports.nmr,
+							'=META-INF.cxf.transport.nmr'
                         </Export-Package>
-                        <Private-Package />
-                        <_failok>true</_failok>
-                        <Spring-Context>*;publish-context:=false</Spring-Context>
-                        <_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
-                    </instructions>
-                </configuration>
-            </plugin>
-            <!-- generate dependencies versions -->
-            <plugin>
-                <groupId>org.apache.servicemix.tooling</groupId>
-                <artifactId>depends-maven-plugin</artifactId>
-                <version>${depends-maven-plugin.version}</version>
-                <executions>
-                    <execution>
-                        <id>generate-depends-file</id>
-                        <goals>
-                            <goal>generate-depends-file</goal>
-                        </goals>
-                    </execution>
-                </executions>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-surefire-plugin</artifactId>
-                <configuration>
-                    <forkMode>pertest</forkMode>
-                    <systemProperties>
-                        <property>
-                            <name>javax.xml.parsers.DocumentBuilderFactory</name>
-                            <value>com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl</value>
-                        </property>
-                        <property>
-                            <name>javax.xml.datatype.DatatypeFactory</name>
-                            <value>com.sun.org.apache.xerces.internal.jaxp.datatype.DatatypeFactoryImpl</value>
-                        </property>
-                        <property>
-                            <name>javax.xml.parsers.SAXParserFactory</name>
-                            <value>com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl</value>
-                        </property>
-                    </systemProperties>
-                </configuration>
-            </plugin>
-            <plugin>
-                <groupId>org.apache.cxf</groupId>
-                <artifactId>cxf-common-xsd</artifactId>
-                <version>${cxf.version}</version>
-                <executions>
-                    <execution>
-                        <id>generate-sources</id>
-                        <phase>generate-sources</phase>
-                        <configuration>
-                            <sourceRoot>${basedir}/target/generated/src/main/java</sourceRoot>
-                            <xsdOptions>
-                              <xsdOption>
-                                <xsd>${basedir}/src/main/resources/schemas/wsdl/nmr.xsd</xsd>
-                                <bindingFile>${basedir}/src/main/resources/schemas/wsdl/nmr.xjb</bindingFile>
-                                <catalog>${basedir}/src/main/build-resources/catalog.cat</catalog>
-                                <deleteDirs>
-                                  <deleteDir>${basedir}/target/generated/src/main/java/org/apache/cxf/wsdl</deleteDir>
-                                </deleteDirs>
-                              </xsdOption>
-
-                            </xsdOptions>
-                        </configuration>
-                        <goals>
-                            <goal>xsdtojava</goal>
-                        </goals>
-                    </execution>
-                </executions>
-                <dependencies>
-                  <dependency>
-                    <groupId>org.apache.cxf</groupId>
-                    <artifactId>cxf-common-utilities</artifactId>
-                    <version>${cxf.version}</version>
-                  </dependency>
-                </dependencies>
-            </plugin>
-            <!-- exclude generated class from Cobertura reports -->
-            <plugin>
-               <groupId>org.codehaus.mojo</groupId>
-               <artifactId>cobertura-maven-plugin</artifactId>
-               <configuration>
-                   <instrumentation>
-                       <excludes>
-                           <exclude>org/apache/servicemix/cxf/transport/nmr/ObjectFactory.class</exclude>
-                           <exclude>org/apache/servicemix/cxf/transport/nmr/package-info.class</exclude>
-                           <exclude>org/apache/servicemix/cxf/transport/nmr/AddressType.class</exclude>
-                       </excludes>
-                   </instrumentation>
-               </configuration>
-           </plugin>
-
-        </plugins>
-    </build>
-    <profiles>
-        <profile>
-      <id>ibmjdk</id>
-      <activation>
-        <property>
-          <name>java.vendor</name>
-          <value>IBM Corporation</value>
-        </property>
-      </activation>
-      <!--
-        Add the Sun jaxp-ri as a dependency when using the ibm jdk, so that
-        cxf's dependency on the Sun saaj can work with the ibm jdk.
-      -->
-      <dependencies>
-        <dependency>
-          <groupId>com.sun.xml.parsers</groupId>
-          <artifactId>jaxp-ri</artifactId>
-          <version>1.4.2</version>
-        </dependency>
-      </dependencies>
-      <build>
-        <plugins>
-          <plugin>
-            <groupId>org.apache.maven.plugins</groupId>
-            <artifactId>maven-surefire-plugin</artifactId>
-            <configuration>
-              <includes>
-                <include>**/*Test*</include>
-              </includes>
-              <excludes>
-                <exclude>**/*$*</exclude>
-              </excludes>
-              <forkMode>${surefire.fork.mode}</forkMode>
-              <systemProperties>
-                <property>
-                  <name>derby.system.home</name>
-                  <value>${basedir}/target/derby</value>
-                </property>
-                <!--
-                  With Maven 2.0.7, it's possible that jaxp-ri will be placed
-                  in front of woodstox on the classpath. If this happens, cxf
-                  will not use woodstox, causing test failures (e.g.,
-                  CxfBcProviderConsumerMtomTest). So, set these properties to
-                  ensure woodstox is used.  Maven 2.0.9 doesn't require this
-                  work-around since it consistently places jaxp-ri at the end
-                  of the dependencies.
-                -->
-                <property>
-                  <name>javax.xml.stream.XMLInputFactory</name>
-                  <value>com.ctc.wstx.stax.WstxInputFactory</value>
-                </property>
-                <property>
-                  <name>javax.xml.stream.XMLOutputFactory</name>
-                  <value>com.ctc.wstx.stax.WstxOutputFactory</value>
-                </property>
-              </systemProperties>
-            </configuration>
-          </plugin>
-
-        </plugins>
-      </build>
-    </profile>
-
-    </profiles>
+						<Private-Package />
+						<_failok>true</_failok>
+						<Spring-Context>*;publish-context:=false</Spring-Context>
+						<_versionpolicy>[$(version;==;$(@)),$(version;+;$(@)))</_versionpolicy>
+					</instructions>
+				</configuration>
+			</plugin>
+			<!-- generate dependencies versions -->
+			<plugin>
+				<groupId>org.apache.servicemix.tooling</groupId>
+				<artifactId>depends-maven-plugin</artifactId>
+				<executions>
+					<execution>
+						<id>generate-depends-file</id>
+						<goals>
+							<goal>generate-depends-file</goal>
+						</goals>
+					</execution>
+				</executions>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.maven.plugins</groupId>
+				<artifactId>maven-surefire-plugin</artifactId>
+				<configuration>
+					<forkMode>pertest</forkMode>
+					<systemProperties>
+						<property>
+							<name>javax.xml.parsers.DocumentBuilderFactory</name>
+							<value>com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderFactoryImpl</value>
+						</property>
+						<property>
+							<name>javax.xml.datatype.DatatypeFactory</name>
+							<value>com.sun.org.apache.xerces.internal.jaxp.datatype.DatatypeFactoryImpl</value>
+						</property>
+						<property>
+							<name>javax.xml.parsers.SAXParserFactory</name>
+							<value>com.sun.org.apache.xerces.internal.jaxp.SAXParserFactoryImpl</value>
+						</property>
+					</systemProperties>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.apache.cxf</groupId>
+				<artifactId>cxf-common-xsd</artifactId>
+				<executions>
+					<execution>
+						<id>generate-sources</id>
+						<phase>generate-sources</phase>
+						<configuration>
+							<sourceRoot>${basedir}/target/generated/src/main/java</sourceRoot>
+							<xsdOptions>
+								<xsdOption>
+									<xsd>${basedir}/src/main/resources/schemas/wsdl/nmr.xsd</xsd>
+									<bindingFile>${basedir}/src/main/resources/schemas/wsdl/nmr.xjb</bindingFile>
+									<catalog>${basedir}/src/main/build-resources/catalog.cat</catalog>
+									<deleteDirs>
+										<deleteDir>${basedir}/target/generated/src/main/java/org/apache/cxf/wsdl</deleteDir>
+									</deleteDirs>
+								</xsdOption>
+
+							</xsdOptions>
+						</configuration>
+						<goals>
+							<goal>xsdtojava</goal>
+						</goals>
+					</execution>
+				</executions>
+				<dependencies>
+					<dependency>
+						<groupId>org.apache.cxf</groupId>
+						<artifactId>cxf-common-utilities</artifactId>
+						<version>${cxf.version}</version>
+					</dependency>
+				</dependencies>
+			</plugin>
+			<!-- exclude generated class from Cobertura reports -->
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>cobertura-maven-plugin</artifactId>
+				<configuration>
+					<instrumentation>
+						<excludes>
+							<exclude>org/apache/servicemix/cxf/transport/nmr/ObjectFactory.class</exclude>
+							<exclude>org/apache/servicemix/cxf/transport/nmr/package-info.class</exclude>
+							<exclude>org/apache/servicemix/cxf/transport/nmr/AddressType.class</exclude>
+						</excludes>
+					</instrumentation>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+	
+	<profiles>
+		<profile>
+			<id>ibmjdk</id>
+			<activation>
+				<property>
+					<name>java.vendor</name>
+					<value>IBM Corporation</value>
+				</property>
+			</activation>
+			<!-- Add the Sun jaxp-ri as a dependency when using the ibm jdk, so that 
+				cxf's dependency on the Sun saaj can work with the ibm jdk. -->
+			<dependencies>
+				<dependency>
+					<groupId>com.sun.xml.parsers</groupId>
+					<artifactId>jaxp-ri</artifactId>
+				</dependency>
+			</dependencies>
+			<build>
+				<plugins>
+					<plugin>
+						<groupId>org.apache.maven.plugins</groupId>
+						<artifactId>maven-surefire-plugin</artifactId>
+						<configuration>
+							<includes>
+								<include>**/*Test*</include>
+							</includes>
+							<excludes>
+								<exclude>**/*$*</exclude>
+							</excludes>
+							<forkMode>${surefire.fork.mode}</forkMode>
+							<systemProperties>
+								<property>
+									<name>derby.system.home</name>
+									<value>${basedir}/target/derby</value>
+								</property>
+								<!-- With Maven 2.0.7, it's possible that jaxp-ri will be placed 
+									in front of woodstox on the classpath. If this happens, cxf will not use 
+									woodstox, causing test failures (e.g., CxfBcProviderConsumerMtomTest). So, 
+									set these properties to ensure woodstox is used. Maven 2.0.9 doesn't require 
+									this work-around since it consistently places jaxp-ri at the end of the dependencies. -->
+								<property>
+									<name>javax.xml.stream.XMLInputFactory</name>
+									<value>com.ctc.wstx.stax.WstxInputFactory</value>
+								</property>
+								<property>
+									<name>javax.xml.stream.XMLOutputFactory</name>
+									<value>com.ctc.wstx.stax.WstxOutputFactory</value>
+								</property>
+							</systemProperties>
+						</configuration>
+					</plugin>
+
+				</plugins>
+			</build>
+		</profile>
+	</profiles>
 
 </project>

Modified: servicemix/smx4/features/trunk/cxf/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/cxf/pom.xml?rev=1021918&r1=1021917&r2=1021918&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/cxf/pom.xml (original)
+++ servicemix/smx4/features/trunk/cxf/pom.xml Tue Oct 12 20:50:01 2010
@@ -1,7 +1,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">
-
+<?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/xsd/maven-4.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.
@@ -18,23 +19,22 @@
         limitations under the License.
     -->
 
-    <modelVersion>4.0.0</modelVersion>
+	<modelVersion>4.0.0</modelVersion>
 
-    <parent>
-        <groupId>org.apache.servicemix.features</groupId>
-        <artifactId>features</artifactId>
-        <version>4.3.0-SNAPSHOT</version>
-    </parent>
-
-    <groupId>org.apache.servicemix.cxf</groupId>
-    <artifactId>cxf</artifactId>
-    <packaging>pom</packaging>
-    <version>4.3.0-SNAPSHOT</version>
-    <name>Apache ServiceMix :: Features :: CXF Support</name>
-
-    <modules>
-        <module>cxf-transport-nmr</module>
-        <module>cxf-binding-nmr</module>
-    </modules>
+	<parent>
+		<groupId>org.apache.servicemix.features</groupId>
+		<artifactId>features</artifactId>
+		<version>4.3.0-SNAPSHOT</version>
+	</parent>
+
+	<groupId>org.apache.servicemix.cxf</groupId>
+	<artifactId>cxf</artifactId>
+	<packaging>pom</packaging>
+	<name>Apache ServiceMix :: Features :: CXF Support</name>
+
+	<modules>
+		<module>cxf-transport-nmr</module>
+		<module>cxf-binding-nmr</module>
+	</modules>
 
 </project>

Modified: servicemix/smx4/features/trunk/deps/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/deps/pom.xml?rev=1021918&r1=1021917&r2=1021918&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/deps/pom.xml (original)
+++ servicemix/smx4/features/trunk/deps/pom.xml Tue Oct 12 20:50:01 2010
@@ -1,75 +1,71 @@
-<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">
+<?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/xsd/maven-4.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.
-  -->
-
-  <!--
-     ATTENTION:
-     This project is an ugly workaround to pull in some duplicated dependencies
-     which otherwise would be ignored by maven and make the build fail.
-     The reason is that those deps only differ in the version numbers to
-     deps used in the assembly.
-  -->
-
-  <modelVersion>4.0.0</modelVersion>
-
-  <parent>
-    <groupId>org.apache.servicemix.features</groupId>
-    <artifactId>features</artifactId>
-    <version>4.3.0-SNAPSHOT</version>
-  </parent>
-
-  <groupId>org.apache.servicemix.features</groupId>
-  <artifactId>org.apache.servicemix.features.deps</artifactId>
-  <packaging>pom</packaging>
-  <version>4.3.0-SNAPSHOT</version>
-  <name>Apache ServiceMix :: Features :: Dependencies</name>
-
-  <dependencies>
-    <dependency>
-      <groupId>org.apache.servicemix.bundles</groupId>
-      <artifactId>org.apache.servicemix.bundles.antlr</artifactId>
-      <version>${antlr2.bundle.version}</version>
-    </dependency>
-    <dependency>
-      <groupId>org.apache.servicemix.bundles</groupId>
-      <artifactId>org.apache.servicemix.bundles.commons-pool</artifactId>
-      <version>${commons-pool.bundle.version}</version>
-    </dependency>
-  </dependencies>
-
-  <build>
-    <plugins>
-      <plugin>
-        <artifactId>maven-dependency-plugin</artifactId>
-        <executions>
-          <execution>
-            <goals>
-              <goal>resolve</goal>
-            </goals>
-            <configuration>
-              <silent>true</silent>
-              <excludeTransitive>true</excludeTransitive>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-    </plugins>
-  </build>
+    <!--
+    
+        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.
+    -->
+
+	<!-- 
+	   ATTENTION: This project is an ugly workaround to pull in some duplicated 
+	   dependencies which otherwise would be ignored by maven and make the build 
+	   fail. The reason is that those deps only differ in the version numbers to 
+	   deps used in the assembly. 
+	-->
+
+	<modelVersion>4.0.0</modelVersion>
+
+	<parent>
+		<groupId>org.apache.servicemix.features</groupId>
+		<artifactId>features</artifactId>
+		<version>4.3.0-SNAPSHOT</version>
+	</parent>
+
+	<artifactId>org.apache.servicemix.features.deps</artifactId>
+	<packaging>pom</packaging>
+	<name>Apache ServiceMix :: Features :: Dependencies</name>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.servicemix.bundles</groupId>
+			<artifactId>org.apache.servicemix.bundles.antlr</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.servicemix.bundles</groupId>
+			<artifactId>org.apache.servicemix.bundles.commons-pool</artifactId>
+		</dependency>
+	</dependencies>
+
+	<build>
+		<plugins>
+			<plugin>
+				<artifactId>maven-dependency-plugin</artifactId>
+				<executions>
+					<execution>
+						<goals>
+							<goal>resolve</goal>
+						</goals>
+						<configuration>
+							<silent>true</silent>
+							<excludeTransitive>true</excludeTransitive>
+						</configuration>
+					</execution>
+				</executions>
+			</plugin>
+		</plugins>
+	</build>
 
 </project>

Modified: servicemix/smx4/features/trunk/examples/bridge-camel/bridge-camel-sa/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/bridge-camel/bridge-camel-sa/pom.xml?rev=1021918&r1=1021917&r2=1021918&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/examples/bridge-camel/bridge-camel-sa/pom.xml (original)
+++ servicemix/smx4/features/trunk/examples/bridge-camel/bridge-camel-sa/pom.xml Tue Oct 12 20:50:01 2010
@@ -1,62 +1,63 @@
 <?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">
+<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/xsd/maven-4.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.examples</groupId>
-        <artifactId>bridge-camel</artifactId>
-        <version>4.3.0-SNAPSHOT</version>
-    </parent>
-
-    <groupId>org.apache.servicemix.examples.bridge-camel</groupId>
-    <artifactId>bridge-camel-sa</artifactId>
-    <packaging>jbi-service-assembly</packaging>
-    <name>Apache ServiceMix :: Features :: Examples :: Bridge Camel :: SA</name>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.servicemix.examples.bridge-camel</groupId>
-            <artifactId>bridge-http-su</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.servicemix.examples.bridge-camel</groupId>
-            <artifactId>bridge-camel-su</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.servicemix.examples.bridge-camel</groupId>
-            <artifactId>bridge-jms-su</artifactId>
-            <version>${project.version}</version>
-        </dependency>
-    </dependencies>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.servicemix.tooling</groupId>
-                <artifactId>jbi-maven-plugin</artifactId>
-                <extensions>true</extensions>
-            </plugin>
-        </plugins>
-    </build>
+    <!--
+    
+        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.examples</groupId>
+		<artifactId>bridge-camel</artifactId>
+		<version>4.3.0-SNAPSHOT</version>
+	</parent>
+
+	<groupId>org.apache.servicemix.examples.bridge-camel</groupId>
+	<artifactId>bridge-camel-sa</artifactId>
+	<packaging>jbi-service-assembly</packaging>
+	<name>Apache ServiceMix :: Features :: Examples :: Bridge Camel :: SA</name>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.servicemix.examples.bridge-camel</groupId>
+			<artifactId>bridge-http-su</artifactId>
+			<version>${project.version}</version>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.servicemix.examples.bridge-camel</groupId>
+			<artifactId>bridge-camel-su</artifactId>
+			<version>${project.version}</version>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.servicemix.examples.bridge-camel</groupId>
+			<artifactId>bridge-jms-su</artifactId>
+			<version>${project.version}</version>
+		</dependency>
+	</dependencies>
+
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.servicemix.tooling</groupId>
+				<artifactId>jbi-maven-plugin</artifactId>
+				<extensions>true</extensions>
+			</plugin>
+		</plugins>
+	</build>
+	
 </project>

Modified: servicemix/smx4/features/trunk/examples/bridge-camel/bridge-camel-su/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/bridge-camel/bridge-camel-su/pom.xml?rev=1021918&r1=1021917&r2=1021918&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/examples/bridge-camel/bridge-camel-su/pom.xml (original)
+++ servicemix/smx4/features/trunk/examples/bridge-camel/bridge-camel-su/pom.xml Tue Oct 12 20:50:01 2010
@@ -1,48 +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">
+<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/xsd/maven-4.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.examples</groupId>
-        <artifactId>bridge-camel</artifactId>
-        <version>4.3.0-SNAPSHOT</version>
-    </parent>
-
-    <groupId>org.apache.servicemix.examples.bridge-camel</groupId>
-    <artifactId>bridge-camel-su</artifactId>
-    <packaging>jbi-service-unit</packaging>
-    <name>Apache ServiceMix :: Features :: Examples :: Bridge Camel :: Camel SU</name>
-    
-    <properties>
-      <componentName>servicemix-camel</componentName>
-    </properties>
+    <!--
     
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.servicemix.tooling</groupId>
-                <artifactId>jbi-maven-plugin</artifactId>
-                <extensions>true</extensions>
-            </plugin>
-        </plugins>
-    </build>
+        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.examples</groupId>
+		<artifactId>bridge-camel</artifactId>
+		<version>4.3.0-SNAPSHOT</version>
+	</parent>
+
+	<groupId>org.apache.servicemix.examples.bridge-camel</groupId>
+	<artifactId>bridge-camel-su</artifactId>
+	<packaging>jbi-service-unit</packaging>
+	<name>Apache ServiceMix :: Features :: Examples :: Bridge Camel :: Camel SU</name>
+
+	<properties>
+		<componentName>servicemix-camel</componentName>
+	</properties>
+
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.servicemix.tooling</groupId>
+				<artifactId>jbi-maven-plugin</artifactId>
+				<extensions>true</extensions>
+			</plugin>
+		</plugins>
+	</build>
 </project>

Modified: servicemix/smx4/features/trunk/examples/bridge-camel/bridge-http-su/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/bridge-camel/bridge-http-su/pom.xml?rev=1021918&r1=1021917&r2=1021918&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/examples/bridge-camel/bridge-http-su/pom.xml (original)
+++ servicemix/smx4/features/trunk/examples/bridge-camel/bridge-http-su/pom.xml Tue Oct 12 20:50:01 2010
@@ -1,53 +1,52 @@
 <?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">
+<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/xsd/maven-4.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.examples</groupId>
-        <artifactId>bridge-camel</artifactId>
-        <version>4.3.0-SNAPSHOT</version>
-    </parent>
-
-    <groupId>org.apache.servicemix.examples.bridge-camel</groupId>
-    <artifactId>bridge-http-su</artifactId>
-    <packaging>jbi-service-unit</packaging>
-    <name>Apache ServiceMix :: Features :: Examples :: Bridge Camel :: HTTP SU</name>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.servicemix</groupId>
-            <artifactId>servicemix-http</artifactId>
-            <version>${servicemix-http.version}</version>
-        </dependency>
-    </dependencies>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.servicemix.tooling</groupId>
-                <artifactId>jbi-maven-plugin</artifactId>
-                <version>${jbi-maven-plugin.version}</version>
-                <extensions>true</extensions>
-            </plugin>
-        </plugins>
-    </build>
+    <!--
+    
+        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.examples</groupId>
+		<artifactId>bridge-camel</artifactId>
+		<version>4.3.0-SNAPSHOT</version>
+	</parent>
+
+	<groupId>org.apache.servicemix.examples.bridge-camel</groupId>
+	<artifactId>bridge-http-su</artifactId>
+	<packaging>jbi-service-unit</packaging>
+	<name>Apache ServiceMix :: Features :: Examples :: Bridge Camel :: HTTP SU</name>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.servicemix</groupId>
+			<artifactId>servicemix-http</artifactId>
+		</dependency>
+	</dependencies>
+
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.servicemix.tooling</groupId>
+				<artifactId>jbi-maven-plugin</artifactId>
+				<extensions>true</extensions>
+			</plugin>
+		</plugins>
+	</build>
+	
 </project>

Modified: servicemix/smx4/features/trunk/examples/bridge-camel/bridge-jms-su/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/bridge-camel/bridge-jms-su/pom.xml?rev=1021918&r1=1021917&r2=1021918&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/examples/bridge-camel/bridge-jms-su/pom.xml (original)
+++ servicemix/smx4/features/trunk/examples/bridge-camel/bridge-jms-su/pom.xml Tue Oct 12 20:50:01 2010
@@ -1,82 +1,78 @@
 <?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">
+<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/xsd/maven-4.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.examples</groupId>
-        <artifactId>bridge-camel</artifactId>
-        <version>4.3.0-SNAPSHOT</version>
-    </parent>
-
-    <groupId>org.apache.servicemix.examples.bridge-camel</groupId>
-    <artifactId>bridge-jms-su</artifactId>
-    <packaging>jbi-service-unit</packaging>
-    <name>Apache ServiceMix :: Features :: Examples :: Bridge Camel :: JMS SU</name>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.servicemix</groupId>
-            <artifactId>servicemix-jms</artifactId>
-            <version>${servicemix-jms.version}</version>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.activemq</groupId>
-            <artifactId>activemq-core</artifactId>
-            <version>${activemq.version}</version>
-            <exclusions>
-               <exclusion>
-                  <groupId>org.apache.activemq</groupId>
-                  <artifactId>activeio-core</artifactId>
-               </exclusion>
-               <exclusion>
-                  <groupId>org.apache.camel</groupId>
-                  <artifactId>camel-core</artifactId>
-               </exclusion>
-               <exclusion>
-                  <groupId>commons-logging</groupId>
-                  <artifactId>commons-logging</artifactId>
-               </exclusion>
-               <exclusion>
-                  <groupId>commons-logging</groupId>
-                  <artifactId>commons-logging-api</artifactId>
-               </exclusion>
-            </exclusions>
-        </dependency>
-        <!-- this is a dependency for ActiveMQ -->
-        <dependency>
-            <groupId>org.apache.geronimo.specs</groupId>
-            <artifactId>geronimo-j2ee-management_1.1_spec</artifactId>
-            <version>${geronimo-j2ee-management.version}</version>
-        </dependency>
-    </dependencies>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.servicemix.tooling</groupId>
-                <artifactId>jbi-maven-plugin</artifactId>
-                <version>${jbi-maven-plugin.version}</version>
-                <extensions>true</extensions>
-            </plugin>
-        </plugins>
-    </build>
+    <!--
+    
+        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.examples</groupId>
+		<artifactId>bridge-camel</artifactId>
+		<version>4.3.0-SNAPSHOT</version>
+	</parent>
+
+	<groupId>org.apache.servicemix.examples.bridge-camel</groupId>
+	<artifactId>bridge-jms-su</artifactId>
+	<packaging>jbi-service-unit</packaging>
+	<name>Apache ServiceMix :: Features :: Examples :: Bridge Camel :: JMS SU</name>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.servicemix</groupId>
+			<artifactId>servicemix-jms</artifactId>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.activemq</groupId>
+			<artifactId>activemq-core</artifactId>
+			<exclusions>
+				<exclusion>
+					<groupId>org.apache.activemq</groupId>
+					<artifactId>activeio-core</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>org.apache.camel</groupId>
+					<artifactId>camel-core</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>commons-logging</groupId>
+					<artifactId>commons-logging</artifactId>
+				</exclusion>
+				<exclusion>
+					<groupId>commons-logging</groupId>
+					<artifactId>commons-logging-api</artifactId>
+				</exclusion>
+			</exclusions>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.geronimo.specs</groupId>
+			<artifactId>geronimo-j2ee-management_1.1_spec</artifactId>
+		</dependency>
+	</dependencies>
+
+	<build>
+		<plugins>
+			<plugin>
+				<groupId>org.apache.servicemix.tooling</groupId>
+				<artifactId>jbi-maven-plugin</artifactId>
+				<extensions>true</extensions>
+			</plugin>
+		</plugins>
+	</build>
+	
 </project>

Modified: servicemix/smx4/features/trunk/examples/bridge-camel/client/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/smx4/features/trunk/examples/bridge-camel/client/pom.xml?rev=1021918&r1=1021917&r2=1021918&view=diff
==============================================================================
--- servicemix/smx4/features/trunk/examples/bridge-camel/client/pom.xml (original)
+++ servicemix/smx4/features/trunk/examples/bridge-camel/client/pom.xml Tue Oct 12 20:50:01 2010
@@ -1,61 +1,61 @@
 <?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.examples</groupId>
-        <artifactId>bridge-camel</artifactId>
-        <version>4.3.0-SNAPSHOT</version>
-    </parent>
-
-    <groupId>org.apache.servicemix.examples.bridge-camel</groupId>
-    <artifactId>bridge-camel-client</artifactId>
-    <name>Apache ServiceMix :: Features :: Examples :: Bridge Camel :: Client</name>
-
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.servicemix</groupId>
-            <artifactId>servicemix-utils</artifactId>
-            <version>${servicemix-utils.version}</version>
-        </dependency>
-    </dependencies>
-
-    <build>
-        <plugins>
-            <plugin>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <configuration>
-                    <source>1.5</source>
-                    <target>1.5</target>
-                </configuration> 
-            </plugin>
-            <plugin>
-                <groupId>org.codehaus.mojo</groupId>
-                <artifactId>exec-maven-plugin</artifactId>
-                <configuration>
-                    <mainClass>org.apache.servicemix.samples.bridgecamel.Client</mainClass>
-                    <includePluginDependencies>false</includePluginDependencies>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
+<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/xsd/maven-4.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.examples</groupId>
+		<artifactId>bridge-camel</artifactId>
+		<version>4.3.0-SNAPSHOT</version>
+	</parent>
+
+	<groupId>org.apache.servicemix.examples.bridge-camel</groupId>
+	<artifactId>bridge-camel-client</artifactId>
+	<name>Apache ServiceMix :: Features :: Examples :: Bridge Camel :: Client</name>
+
+	<dependencies>
+		<dependency>
+			<groupId>org.apache.servicemix</groupId>
+			<artifactId>servicemix-utils</artifactId>
+		</dependency>
+	</dependencies>
+
+	<build>
+		<plugins>
+			<plugin>
+				<artifactId>maven-compiler-plugin</artifactId>
+				<configuration>
+					<source>1.5</source>
+					<target>1.5</target>
+				</configuration>
+			</plugin>
+			<plugin>
+				<groupId>org.codehaus.mojo</groupId>
+				<artifactId>exec-maven-plugin</artifactId>
+				<configuration>
+					<mainClass>org.apache.servicemix.samples.bridgecamel.Client</mainClass>
+					<includePluginDependencies>false</includePluginDependencies>
+				</configuration>
+			</plugin>
+		</plugins>
+	</build>
+	
 </project>