You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ch...@apache.org on 2006/02/22 00:40:29 UTC

svn commit: r379627 [17/34] - in /incubator/servicemix/trunk: ./ etc/ sandbox/servicemix-wsn-1.2/src/sa/META-INF/ sandbox/servicemix-wsn-1.2/src/su/META-INF/ servicemix-assembly/ servicemix-assembly/src/main/assembly/ servicemix-assembly/src/main/relea...

Modified: incubator/servicemix/trunk/servicemix-jsr181/src/main/java/org/apache/servicemix/jsr181/xfire/JbiFaultSerializer.java
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-jsr181/src/main/java/org/apache/servicemix/jsr181/xfire/JbiFaultSerializer.java?rev=379627&r1=379626&r2=379627&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-jsr181/src/main/java/org/apache/servicemix/jsr181/xfire/JbiFaultSerializer.java (original)
+++ incubator/servicemix/trunk/servicemix-jsr181/src/main/java/org/apache/servicemix/jsr181/xfire/JbiFaultSerializer.java Tue Feb 21 15:40:05 2006
@@ -1,79 +1,79 @@
-/*
- * Copyright 2005-2006 The Apache Software Foundation.
- *
- * Licensed 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.
- */
-package org.apache.servicemix.jsr181.xfire;
-
-import java.io.PrintWriter;
-import java.io.StringWriter;
-import java.util.List;
-
-import javax.xml.stream.XMLStreamException;
-import javax.xml.stream.XMLStreamWriter;
-
-import org.apache.servicemix.jsr181.Jsr181ConfigurationMBean;
-import org.codehaus.xfire.MessageContext;
-import org.codehaus.xfire.XFireRuntimeException;
-import org.codehaus.xfire.exchange.InMessage;
-import org.codehaus.xfire.exchange.MessageSerializer;
-import org.codehaus.xfire.exchange.OutMessage;
-import org.codehaus.xfire.fault.XFireFault;
-import org.codehaus.xfire.util.jdom.StaxSerializer;
-import org.jdom.Element;
-
-public class JbiFaultSerializer implements MessageSerializer {
-
-    private Jsr181ConfigurationMBean configuration;
-    
-    public JbiFaultSerializer(Jsr181ConfigurationMBean configuration) {
-        this.configuration = configuration;
-    }
-    
-    public void readMessage(InMessage message, MessageContext context) throws XFireFault {
-        throw new UnsupportedOperationException();
-    }
-
-    public void writeMessage(OutMessage message, XMLStreamWriter writer, MessageContext context) throws XFireFault {
-        try {
-            XFireFault fault = (XFireFault) message.getBody();
-            writer.writeStartElement("fault");
-            writer.writeStartElement("message");
-            writer.writeCharacters(fault.getMessage());
-            writer.writeEndElement(); // message
-            if (fault.hasDetails()) {
-                Element detail = fault.getDetail();
-                writer.writeStartElement("detail");
-                StaxSerializer serializer = new StaxSerializer();
-                List details = detail.getContent();
-                for (int i = 0; i < details.size(); i++) {
-                    serializer.writeElement((Element) details.get(i), writer);
-                }
-                writer.writeEndElement(); // detail
-            }
-            if (configuration.isPrintStackTraceInFaults()) {
-                writer.writeStartElement("stack");
-                StringWriter sw = new StringWriter();
-                PrintWriter pw = new PrintWriter(sw);
-                fault.printStackTrace(pw);
-                pw.close();
-                writer.writeCData(sw.toString());
-                writer.writeEndElement(); // stack
-            }
-            writer.writeEndElement(); // fault
-        } catch (XMLStreamException e) {
-            throw new XFireRuntimeException("Couldn't create fault.", e);
-        }
-    }
-
-}
+/*
+ * Copyright 2005-2006 The Apache Software Foundation.
+ *
+ * Licensed 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.
+ */
+package org.apache.servicemix.jsr181.xfire;
+
+import java.io.PrintWriter;
+import java.io.StringWriter;
+import java.util.List;
+
+import javax.xml.stream.XMLStreamException;
+import javax.xml.stream.XMLStreamWriter;
+
+import org.apache.servicemix.jsr181.Jsr181ConfigurationMBean;
+import org.codehaus.xfire.MessageContext;
+import org.codehaus.xfire.XFireRuntimeException;
+import org.codehaus.xfire.exchange.InMessage;
+import org.codehaus.xfire.exchange.MessageSerializer;
+import org.codehaus.xfire.exchange.OutMessage;
+import org.codehaus.xfire.fault.XFireFault;
+import org.codehaus.xfire.util.jdom.StaxSerializer;
+import org.jdom.Element;
+
+public class JbiFaultSerializer implements MessageSerializer {
+
+    private Jsr181ConfigurationMBean configuration;
+    
+    public JbiFaultSerializer(Jsr181ConfigurationMBean configuration) {
+        this.configuration = configuration;
+    }
+    
+    public void readMessage(InMessage message, MessageContext context) throws XFireFault {
+        throw new UnsupportedOperationException();
+    }
+
+    public void writeMessage(OutMessage message, XMLStreamWriter writer, MessageContext context) throws XFireFault {
+        try {
+            XFireFault fault = (XFireFault) message.getBody();
+            writer.writeStartElement("fault");
+            writer.writeStartElement("message");
+            writer.writeCharacters(fault.getMessage());
+            writer.writeEndElement(); // message
+            if (fault.hasDetails()) {
+                Element detail = fault.getDetail();
+                writer.writeStartElement("detail");
+                StaxSerializer serializer = new StaxSerializer();
+                List details = detail.getContent();
+                for (int i = 0; i < details.size(); i++) {
+                    serializer.writeElement((Element) details.get(i), writer);
+                }
+                writer.writeEndElement(); // detail
+            }
+            if (configuration.isPrintStackTraceInFaults()) {
+                writer.writeStartElement("stack");
+                StringWriter sw = new StringWriter();
+                PrintWriter pw = new PrintWriter(sw);
+                fault.printStackTrace(pw);
+                pw.close();
+                writer.writeCData(sw.toString());
+                writer.writeEndElement(); // stack
+            }
+            writer.writeEndElement(); // fault
+        } catch (XMLStreamException e) {
+            throw new XFireRuntimeException("Couldn't create fault.", e);
+        }
+    }
+
+}

Propchange: incubator/servicemix/trunk/servicemix-jsr181/src/main/java/org/apache/servicemix/jsr181/xfire/JbiFaultSerializer.java
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/servicemix/trunk/servicemix-jsr181/src/main/resources/META-INF/DISCLAIMER.txt
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-jsr181/src/main/resources/META-INF/DISCLAIMER.txt?rev=379627&r1=379626&r2=379627&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-jsr181/src/main/resources/META-INF/DISCLAIMER.txt (original)
+++ incubator/servicemix/trunk/servicemix-jsr181/src/main/resources/META-INF/DISCLAIMER.txt Tue Feb 21 15:40:05 2006
@@ -1,7 +1,7 @@
-ActiveMQ is an effort undergoing incubation at the Apache Software Foundation
-(ASF), sponsored by the Geronimo PMC. Incubation is required of all newly
-accepted projects until a further review indicates that the infrastructure,
-communications, and decision making process have stabilized in a manner
-consistent with other successful ASF projects. While incubation status is not
-necessarily a reflection of the completeness or stability of the code, it does
+ActiveMQ is an effort undergoing incubation at the Apache Software Foundation
+(ASF), sponsored by the Geronimo PMC. Incubation is required of all newly
+accepted projects until a further review indicates that the infrastructure,
+communications, and decision making process have stabilized in a manner
+consistent with other successful ASF projects. While incubation status is not
+necessarily a reflection of the completeness or stability of the code, it does
 indicate that the project has yet to be fully endorsed by the ASF.

Propchange: incubator/servicemix/trunk/servicemix-jsr181/src/main/resources/META-INF/DISCLAIMER.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/servicemix/trunk/servicemix-jsr181/src/main/resources/META-INF/LICENSE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/servicemix/trunk/servicemix-jsr181/src/test/resources/log4j-tests.properties
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-jsr181/src/test/resources/log4j-tests.properties?rev=379627&r1=379626&r2=379627&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-jsr181/src/test/resources/log4j-tests.properties (original)
+++ incubator/servicemix/trunk/servicemix-jsr181/src/test/resources/log4j-tests.properties Tue Feb 21 15:40:05 2006
@@ -1,21 +1,21 @@
-#
-# The logging properties used during tests..
-#
-log4j.rootLogger=DEBUG, out
-
-log4j.logger.org.apache.activemq=INFO
-log4j.logger.org.apache.activemq.spring=WARN
-log4j.logger.org.apache.activemq.store.journal=INFO
-log4j.logger.org.activeio.journal=INFO
-
-# CONSOLE appender not used by default
-log4j.appender.stdout=org.apache.log4j.ConsoleAppender
-log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
-log4j.appender.stdout.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n
-
-# File appender
-log4j.appender.out=org.apache.log4j.FileAppender
-log4j.appender.out.layout=org.apache.log4j.PatternLayout
-log4j.appender.out.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n
-log4j.appender.out.file=target/servicemix-test.log
-log4j.appender.out.append=true
+#
+# The logging properties used during tests..
+#
+log4j.rootLogger=DEBUG, out
+
+log4j.logger.org.apache.activemq=INFO
+log4j.logger.org.apache.activemq.spring=WARN
+log4j.logger.org.apache.activemq.store.journal=INFO
+log4j.logger.org.activeio.journal=INFO
+
+# CONSOLE appender not used by default
+log4j.appender.stdout=org.apache.log4j.ConsoleAppender
+log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
+log4j.appender.stdout.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n
+
+# File appender
+log4j.appender.out=org.apache.log4j.FileAppender
+log4j.appender.out.layout=org.apache.log4j.PatternLayout
+log4j.appender.out.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n
+log4j.appender.out.file=target/servicemix-test.log
+log4j.appender.out.append=true

Propchange: incubator/servicemix/trunk/servicemix-jsr181/src/test/resources/log4j-tests.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/servicemix/trunk/servicemix-lwcontainer/maven.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/servicemix/trunk/servicemix-lwcontainer/pom.xml
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-lwcontainer/pom.xml?rev=379627&r1=379626&r2=379627&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-lwcontainer/pom.xml (original)
+++ incubator/servicemix/trunk/servicemix-lwcontainer/pom.xml Tue Feb 21 15:40:05 2006
@@ -1,134 +1,134 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-    Copyright 2005 The Apache Software Foundation
-
-    Licensed 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.
--->
-<!-- $Rev: 356052 $ $Date: 2005-12-11 14:41:20 -0800 (dim., 11 déc. 2005) $ -->
-<project 
-    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" 
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-    xmlns="http://maven.apache.org/POM/4.0.0">
-    
-    <parent>
-        <groupId>incubator-servicemix</groupId>
-        <artifactId>servicemix</artifactId>
-        <version>3.0-SNAPSHOT</version>
-        <relativePath>../pom.xml</relativePath>
-    </parent>
-    
-    <modelVersion>4.0.0</modelVersion>
-    <groupId>incubator-servicemix</groupId>
-    <artifactId>servicemix-lwcontainer</artifactId>
-    <packaging>jbi-component</packaging>
-    <name>ServiceMix :: Lightweight container Service Engine</name>
-    <description>Lightweight container Service Engine</description>
-    <dependencies>
-    
-        <dependency>
-            <groupId>incubator-servicemix</groupId>
-            <artifactId>servicemix-common</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>incubator-servicemix</groupId>
-            <artifactId>servicemix-components</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>incubator-servicemix</groupId>
-            <artifactId>servicemix-core</artifactId>
-            <scope>provided</scope>
-        </dependency>
-<!--
-        <dependency>
-            <groupId>org.apache.servicemix.dependencies</groupId>
-            <artifactId>xfire-all</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.servicemix.dependencies</groupId>
-            <artifactId>xfire-jaxws</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>jdom</groupId>
-            <artifactId>jdom</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.xbean</groupId>
-            <artifactId>xbean-spring</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.xbean</groupId>
-            <artifactId>xbean-server</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.xbean</groupId>
-            <artifactId>xbean-kernel</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>xmlbeans</groupId>
-            <artifactId>xbean</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>commons-attributes</groupId>
-            <artifactId>commons-attributes-api</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>commons-attributes</groupId>
-            <artifactId>commons-attributes-plugin</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>backport175</groupId>
-            <artifactId>backport175</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>xfire</groupId>
-            <artifactId>jaxb-api</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>beehive</groupId>
-            <artifactId>wsm</artifactId>
-        </dependency>
-        
-        <dependency>
-            <groupId>qdox</groupId>
-            <artifactId>qdox</artifactId>
-            <scope>compile</scope>
-        </dependency>
-        <dependency>
-            <groupId>annogen</groupId>
-            <artifactId>annogen</artifactId>
-            <scope>compile</scope>
-        </dependency>
-        
-        <dependency>
-            <groupId>log4j</groupId>
-            <artifactId>log4j</artifactId>
-            <scope>test</scope>
-        </dependency>
-        -->
-    </dependencies>
-
-    <build>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.servicemix.plugins</groupId>
-                <artifactId>maven2-jbi-plugin</artifactId>
-                <configuration>
-                   <type>service-engine</type>
-                   <bootstrap>org.apache.servicemix.lwcontainer.LwContainerBootstrap</bootstrap>
-                   <component>org.apache.servicemix.lwcontainer.LwContainerComponent</component>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    Copyright 2005 The Apache Software Foundation
+
+    Licensed 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.
+-->
+<!-- $Rev: 356052 $ $Date: 2005-12-11 14:41:20 -0800 (dim., 11 déc. 2005) $ -->
+<project 
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" 
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
+    xmlns="http://maven.apache.org/POM/4.0.0">
+    
+    <parent>
+        <groupId>incubator-servicemix</groupId>
+        <artifactId>servicemix</artifactId>
+        <version>3.0-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>incubator-servicemix</groupId>
+    <artifactId>servicemix-lwcontainer</artifactId>
+    <packaging>jbi-component</packaging>
+    <name>ServiceMix :: Lightweight container Service Engine</name>
+    <description>Lightweight container Service Engine</description>
+    <dependencies>
+    
+        <dependency>
+            <groupId>incubator-servicemix</groupId>
+            <artifactId>servicemix-common</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>incubator-servicemix</groupId>
+            <artifactId>servicemix-components</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>incubator-servicemix</groupId>
+            <artifactId>servicemix-core</artifactId>
+            <scope>provided</scope>
+        </dependency>
+<!--
+        <dependency>
+            <groupId>org.apache.servicemix.dependencies</groupId>
+            <artifactId>xfire-all</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.servicemix.dependencies</groupId>
+            <artifactId>xfire-jaxws</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>jdom</groupId>
+            <artifactId>jdom</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.xbean</groupId>
+            <artifactId>xbean-spring</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.xbean</groupId>
+            <artifactId>xbean-server</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>org.apache.xbean</groupId>
+            <artifactId>xbean-kernel</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>xmlbeans</groupId>
+            <artifactId>xbean</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-attributes</groupId>
+            <artifactId>commons-attributes-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>commons-attributes</groupId>
+            <artifactId>commons-attributes-plugin</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>backport175</groupId>
+            <artifactId>backport175</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>xfire</groupId>
+            <artifactId>jaxb-api</artifactId>
+        </dependency>
+        <dependency>
+            <groupId>beehive</groupId>
+            <artifactId>wsm</artifactId>
+        </dependency>
+        
+        <dependency>
+            <groupId>qdox</groupId>
+            <artifactId>qdox</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        <dependency>
+            <groupId>annogen</groupId>
+            <artifactId>annogen</artifactId>
+            <scope>compile</scope>
+        </dependency>
+        
+        <dependency>
+            <groupId>log4j</groupId>
+            <artifactId>log4j</artifactId>
+            <scope>test</scope>
+        </dependency>
+        -->
+    </dependencies>
+
+    <build>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.servicemix.plugins</groupId>
+                <artifactId>maven2-jbi-plugin</artifactId>
+                <configuration>
+                   <type>service-engine</type>
+                   <bootstrap>org.apache.servicemix.lwcontainer.LwContainerBootstrap</bootstrap>
+                   <component>org.apache.servicemix.lwcontainer.LwContainerComponent</component>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+</project>

Propchange: incubator/servicemix/trunk/servicemix-lwcontainer/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/servicemix/trunk/servicemix-lwcontainer/project.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/servicemix/trunk/servicemix-lwcontainer/project.xml
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-lwcontainer/project.xml?rev=379627&r1=379626&r2=379627&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-lwcontainer/project.xml (original)
+++ incubator/servicemix/trunk/servicemix-lwcontainer/project.xml Tue Feb 21 15:40:05 2006
@@ -1,200 +1,200 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-
-<!--
-	
-	Copyright 2005 The Apache Software Foundation
-	
-	Licensed 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.
-	
--->
-
-<!DOCTYPE project>
-<project>
-	<pomVersion>3</pomVersion>
-	<extend>${basedir}/../etc/project.xml</extend>
-
-	<name>ServiceMix :: LightWeight Container</name>
-	<id>servicemix-lwcontainer</id>
-	<shortDescription>LightWeight Container</shortDescription>
-	<description>LightWeight Container</description>
-
-	<package>org.apache.servicemix.lwcontainer</package>
-	<packageGroups>
-		<packageGroup>
-			<title>JLightWeight Container</title>
-			<packages>org.apache.servicemix.lwcontainer</packages>
-		</packageGroup>
-	</packageGroups>
-
-	<!-- ============ -->
-	<!-- Dependencies -->
-	<!-- ============ -->
-	<dependencies>
-
-		<dependency>
-			<groupId>${pom.groupId}</groupId>
-			<artifactId>maven-jbi-plugin</artifactId>
-			<version>${pom.currentVersion}</version>
-			<type>plugin</type>
-		</dependency>
-
-		<!-- JBI bundled dependencies -->
-		<dependency>
-			<groupId>${pom.groupId}</groupId>
-			<artifactId>servicemix-common</artifactId>
-			<version>${pom.currentVersion}</version>
-			<properties>
-				<eclipse.dependency>true</eclipse.dependency>
-				<jbi.bundle>true</jbi.bundle>
-				<jbi.bootstrap>true</jbi.bootstrap>
-			</properties>
-		</dependency>
-		<dependency>
-			<groupId>commons-logging</groupId>
-			<artifactId>commons-logging</artifactId>
-			<version>${commons_logging_version}</version>
-			<properties>
-			</properties>
-		</dependency>
-		<dependency>
-			<groupId>backport-util-concurrent</groupId>
-			<artifactId>backport-util-concurrent</artifactId>
-			<version>${backport_util_concurrent_version}</version>
-			<properties>
-			</properties>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.xbean</groupId>
-			<artifactId>xbean-spring</artifactId>
-			<version>${xbean_version}</version>
-			<properties>
-			</properties>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.xbean</groupId>
-			<artifactId>xbean-server</artifactId>
-			<version>${xbean_version}</version>
-			<properties>
-			</properties>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.xbean</groupId>
-			<artifactId>xbean-kernel</artifactId>
-			<version>${xbean_version}</version>
-			<properties>
-			</properties>
-		</dependency>
-		<dependency>
-			<groupId>springframework</groupId>
-			<artifactId>spring</artifactId>
-			<version>${spring_version}</version>
-			<properties>
-			</properties>
-		</dependency>
-		<dependency>
-			<groupId>${pom.groupId}</groupId>
-			<artifactId>servicemix-core</artifactId>
-			<version>${pom.currentVersion}</version>
-			<properties>
-				<eclipse.dependency>true</eclipse.dependency>
-			</properties>
-		</dependency>
-		<dependency>
-			<groupId>${pom.groupId}</groupId>
-			<artifactId>servicemix-components</artifactId>
-			<version>${pom.currentVersion}</version>
-			<properties>
-				<eclipse.dependency>true</eclipse.dependency>
-				<jbi.bundle>true</jbi.bundle>
-			</properties>
-		</dependency>
-
-		<!-- Provided dependencies -->
-		<dependency>
-			<groupId>org.apache.geronimo.specs</groupId>
-			<artifactId>geronimo-j2ee-connector_1.5_spec</artifactId>
-			<version>${geronimo_spec_j2ee_connector_version}</version>
-		</dependency>
-		<dependency>
-			<groupId>org.apache.geronimo.specs</groupId>
-			<artifactId>geronimo-jta_1.0.1B_spec</artifactId>
-			<version>${geronimo_spec_jta_version}</version>
-		</dependency>
-		<dependency>
-			<groupId>${pom.groupId}</groupId>
-			<artifactId>servicemix-jbi</artifactId>
-			<version>${pom.currentVersion}</version>
-			<properties>
-				<eclipse.dependency>true</eclipse.dependency>
-			</properties>
-		</dependency>
-		<dependency>
-			<groupId>mx4j</groupId>
-			<artifactId>mx4j</artifactId>
-			<version>${mx4j_version}</version>
-		</dependency>
-		<dependency>
-			<groupId>mx4j</groupId>
-			<artifactId>mx4j-remote</artifactId>
-			<version>${mx4j_version}</version>
-		</dependency>
-		<dependency>
-			<groupId>xfire</groupId>
-			<artifactId>XmlSchema</artifactId>
-			<version>${xfire_xmlschema_version}</version>
-		</dependency>
-
-
-		<!-- Testing only -->
-		<dependency>
-			<groupId>incubator-activemq</groupId>
-      <artifactId>activemq-core</artifactId>
-			<version>${activemq_version}</version>
-		</dependency>
-		<dependency>
-			<groupId>activeio</groupId>
-      <artifactId>activeio</artifactId>
-			<version>${activeio_version}</version>
-		</dependency>
-		<dependency>
-			<groupId>jencks</groupId>
-			<artifactId>jencks-all</artifactId>
-			<version>${jencks_version}</version>
-		</dependency>
-		<dependency>
-			<groupId>concurrent</groupId>
-			<artifactId>concurrent</artifactId>
-			<version>${concurrent_version}</version>
-		</dependency>
-		<dependency>
-			<groupId>commons-beanutils</groupId>
-			<artifactId>commons-beanutils</artifactId>
-			<version>${commons_beanutils_version}</version>
-		</dependency>
-		<dependency>
-			<groupId>log4j</groupId>
-			<artifactId>log4j</artifactId>
-			<version>${log4j_version}</version>
-		</dependency>
-
-	</dependencies>
-
-	<build>
-		<unitTest>
-			<includes>
-				<include>**/*Test.*</include>
-			</includes>
-			<excludes></excludes>
-		</unitTest>		
-	</build>
-</project>
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!--
+	
+	Copyright 2005 The Apache Software Foundation
+	
+	Licensed 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.
+	
+-->
+
+<!DOCTYPE project>
+<project>
+	<pomVersion>3</pomVersion>
+	<extend>${basedir}/../etc/project.xml</extend>
+
+	<name>ServiceMix :: LightWeight Container</name>
+	<id>servicemix-lwcontainer</id>
+	<shortDescription>LightWeight Container</shortDescription>
+	<description>LightWeight Container</description>
+
+	<package>org.apache.servicemix.lwcontainer</package>
+	<packageGroups>
+		<packageGroup>
+			<title>JLightWeight Container</title>
+			<packages>org.apache.servicemix.lwcontainer</packages>
+		</packageGroup>
+	</packageGroups>
+
+	<!-- ============ -->
+	<!-- Dependencies -->
+	<!-- ============ -->
+	<dependencies>
+
+		<dependency>
+			<groupId>${pom.groupId}</groupId>
+			<artifactId>maven-jbi-plugin</artifactId>
+			<version>${pom.currentVersion}</version>
+			<type>plugin</type>
+		</dependency>
+
+		<!-- JBI bundled dependencies -->
+		<dependency>
+			<groupId>${pom.groupId}</groupId>
+			<artifactId>servicemix-common</artifactId>
+			<version>${pom.currentVersion}</version>
+			<properties>
+				<eclipse.dependency>true</eclipse.dependency>
+				<jbi.bundle>true</jbi.bundle>
+				<jbi.bootstrap>true</jbi.bootstrap>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>commons-logging</groupId>
+			<artifactId>commons-logging</artifactId>
+			<version>${commons_logging_version}</version>
+			<properties>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>backport-util-concurrent</groupId>
+			<artifactId>backport-util-concurrent</artifactId>
+			<version>${backport_util_concurrent_version}</version>
+			<properties>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.xbean</groupId>
+			<artifactId>xbean-spring</artifactId>
+			<version>${xbean_version}</version>
+			<properties>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.xbean</groupId>
+			<artifactId>xbean-server</artifactId>
+			<version>${xbean_version}</version>
+			<properties>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.xbean</groupId>
+			<artifactId>xbean-kernel</artifactId>
+			<version>${xbean_version}</version>
+			<properties>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>springframework</groupId>
+			<artifactId>spring</artifactId>
+			<version>${spring_version}</version>
+			<properties>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>${pom.groupId}</groupId>
+			<artifactId>servicemix-core</artifactId>
+			<version>${pom.currentVersion}</version>
+			<properties>
+				<eclipse.dependency>true</eclipse.dependency>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>${pom.groupId}</groupId>
+			<artifactId>servicemix-components</artifactId>
+			<version>${pom.currentVersion}</version>
+			<properties>
+				<eclipse.dependency>true</eclipse.dependency>
+				<jbi.bundle>true</jbi.bundle>
+			</properties>
+		</dependency>
+
+		<!-- Provided dependencies -->
+		<dependency>
+			<groupId>org.apache.geronimo.specs</groupId>
+			<artifactId>geronimo-j2ee-connector_1.5_spec</artifactId>
+			<version>${geronimo_spec_j2ee_connector_version}</version>
+		</dependency>
+		<dependency>
+			<groupId>org.apache.geronimo.specs</groupId>
+			<artifactId>geronimo-jta_1.0.1B_spec</artifactId>
+			<version>${geronimo_spec_jta_version}</version>
+		</dependency>
+		<dependency>
+			<groupId>${pom.groupId}</groupId>
+			<artifactId>servicemix-jbi</artifactId>
+			<version>${pom.currentVersion}</version>
+			<properties>
+				<eclipse.dependency>true</eclipse.dependency>
+			</properties>
+		</dependency>
+		<dependency>
+			<groupId>mx4j</groupId>
+			<artifactId>mx4j</artifactId>
+			<version>${mx4j_version}</version>
+		</dependency>
+		<dependency>
+			<groupId>mx4j</groupId>
+			<artifactId>mx4j-remote</artifactId>
+			<version>${mx4j_version}</version>
+		</dependency>
+		<dependency>
+			<groupId>xfire</groupId>
+			<artifactId>XmlSchema</artifactId>
+			<version>${xfire_xmlschema_version}</version>
+		</dependency>
+
+
+		<!-- Testing only -->
+		<dependency>
+			<groupId>incubator-activemq</groupId>
+      <artifactId>activemq-core</artifactId>
+			<version>${activemq_version}</version>
+		</dependency>
+		<dependency>
+			<groupId>activeio</groupId>
+      <artifactId>activeio</artifactId>
+			<version>${activeio_version}</version>
+		</dependency>
+		<dependency>
+			<groupId>jencks</groupId>
+			<artifactId>jencks-all</artifactId>
+			<version>${jencks_version}</version>
+		</dependency>
+		<dependency>
+			<groupId>concurrent</groupId>
+			<artifactId>concurrent</artifactId>
+			<version>${concurrent_version}</version>
+		</dependency>
+		<dependency>
+			<groupId>commons-beanutils</groupId>
+			<artifactId>commons-beanutils</artifactId>
+			<version>${commons_beanutils_version}</version>
+		</dependency>
+		<dependency>
+			<groupId>log4j</groupId>
+			<artifactId>log4j</artifactId>
+			<version>${log4j_version}</version>
+		</dependency>
+
+	</dependencies>
+
+	<build>
+		<unitTest>
+			<includes>
+				<include>**/*Test.*</include>
+			</includes>
+			<excludes></excludes>
+		</unitTest>		
+	</build>
+</project>

Propchange: incubator/servicemix/trunk/servicemix-lwcontainer/project.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/servicemix/trunk/servicemix-lwcontainer/src/main/resources/META-INF/DISCLAIMER.txt
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-lwcontainer/src/main/resources/META-INF/DISCLAIMER.txt?rev=379627&r1=379626&r2=379627&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-lwcontainer/src/main/resources/META-INF/DISCLAIMER.txt (original)
+++ incubator/servicemix/trunk/servicemix-lwcontainer/src/main/resources/META-INF/DISCLAIMER.txt Tue Feb 21 15:40:05 2006
@@ -1,7 +1,7 @@
-ActiveMQ is an effort undergoing incubation at the Apache Software Foundation
-(ASF), sponsored by the Geronimo PMC. Incubation is required of all newly
-accepted projects until a further review indicates that the infrastructure,
-communications, and decision making process have stabilized in a manner
-consistent with other successful ASF projects. While incubation status is not
-necessarily a reflection of the completeness or stability of the code, it does
+ActiveMQ is an effort undergoing incubation at the Apache Software Foundation
+(ASF), sponsored by the Geronimo PMC. Incubation is required of all newly
+accepted projects until a further review indicates that the infrastructure,
+communications, and decision making process have stabilized in a manner
+consistent with other successful ASF projects. While incubation status is not
+necessarily a reflection of the completeness or stability of the code, it does
 indicate that the project has yet to be fully endorsed by the ASF.

Propchange: incubator/servicemix/trunk/servicemix-lwcontainer/src/main/resources/META-INF/DISCLAIMER.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/servicemix/trunk/servicemix-lwcontainer/src/main/resources/META-INF/LICENSE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/servicemix/trunk/servicemix-lwcontainer/src/main/resources/META-INF/components.xml
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-lwcontainer/src/main/resources/META-INF/components.xml?rev=379627&r1=379626&r2=379627&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-lwcontainer/src/main/resources/META-INF/components.xml (original)
+++ incubator/servicemix/trunk/servicemix-lwcontainer/src/main/resources/META-INF/components.xml Tue Feb 21 15:40:05 2006
@@ -1,13 +1,13 @@
-<deployment:components
-	xmlns:deployment="http://servicemix.apache.org/deployment">
-	<component name="servicemix-lwcontainer"
-		description="ServiceMix Lightweight Container"
-		type="service-engine">
-		<deployment:assets>
-			<deployment:connection name="defaultDestination"
-				description="Default destination" />
-			<deployment:embeddedArtifact name="servicemix.xml"
-				description="ServiceMix Definition" extension="xml" />
-		</deployment:assets>
-	</component>
+<deployment:components
+	xmlns:deployment="http://servicemix.apache.org/deployment">
+	<component name="servicemix-lwcontainer"
+		description="ServiceMix Lightweight Container"
+		type="service-engine">
+		<deployment:assets>
+			<deployment:connection name="defaultDestination"
+				description="Default destination" />
+			<deployment:embeddedArtifact name="servicemix.xml"
+				description="ServiceMix Definition" extension="xml" />
+		</deployment:assets>
+	</component>
 </deployment:components>

Propchange: incubator/servicemix/trunk/servicemix-lwcontainer/src/main/resources/META-INF/components.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/log4j-tests.properties
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/log4j-tests.properties?rev=379627&r1=379626&r2=379627&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/log4j-tests.properties (original)
+++ incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/log4j-tests.properties Tue Feb 21 15:40:05 2006
@@ -1,21 +1,21 @@
-#
-# The logging properties used during tests..
-#
-log4j.rootLogger=DEBUG, out
-
-log4j.logger.org.apache.activemq=INFO
-log4j.logger.org.apache.activemq.spring=WARN
-log4j.logger.org.apache.activemq.store.journal=INFO
-log4j.logger.org.activeio.journal=INFO
-
-# CONSOLE appender not used by default
-log4j.appender.stdout=org.apache.log4j.ConsoleAppender
-log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
-log4j.appender.stdout.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n
-
-# File appender
-log4j.appender.out=org.apache.log4j.FileAppender
-log4j.appender.out.layout=org.apache.log4j.PatternLayout
-log4j.appender.out.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n
-log4j.appender.out.file=target/servicemix-test.log
-log4j.appender.out.append=true
+#
+# The logging properties used during tests..
+#
+log4j.rootLogger=DEBUG, out
+
+log4j.logger.org.apache.activemq=INFO
+log4j.logger.org.apache.activemq.spring=WARN
+log4j.logger.org.apache.activemq.store.journal=INFO
+log4j.logger.org.activeio.journal=INFO
+
+# CONSOLE appender not used by default
+log4j.appender.stdout=org.apache.log4j.ConsoleAppender
+log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
+log4j.appender.stdout.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n
+
+# File appender
+log4j.appender.out=org.apache.log4j.FileAppender
+log4j.appender.out.layout=org.apache.log4j.PatternLayout
+log4j.appender.out.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n
+log4j.appender.out.file=target/servicemix-test.log
+log4j.appender.out.append=true

Propchange: incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/log4j-tests.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/log4j.properties
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/log4j.properties?rev=379627&r1=379626&r2=379627&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/log4j.properties (original)
+++ incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/log4j.properties Tue Feb 21 15:40:05 2006
@@ -1,21 +1,21 @@
-#
-# The logging properties used during tests..
-#
-log4j.rootLogger=DEBUG, stdout
-
-log4j.logger.org.apache.activemq=INFO
-log4j.logger.org.apache.activemq.spring=WARN
-log4j.logger.org.apache.activemq.store.journal=INFO
-log4j.logger.org.activeio.journal=INFO
-
-# CONSOLE appender not used by default
-log4j.appender.stdout=org.apache.log4j.ConsoleAppender
-log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
-log4j.appender.stdout.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n
-
-# File appender
-log4j.appender.out=org.apache.log4j.FileAppender
-log4j.appender.out.layout=org.apache.log4j.PatternLayout
-log4j.appender.out.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n
-log4j.appender.out.file=target/servicemix-test.log
-log4j.appender.out.append=true
+#
+# The logging properties used during tests..
+#
+log4j.rootLogger=DEBUG, stdout
+
+log4j.logger.org.apache.activemq=INFO
+log4j.logger.org.apache.activemq.spring=WARN
+log4j.logger.org.apache.activemq.store.journal=INFO
+log4j.logger.org.activeio.journal=INFO
+
+# CONSOLE appender not used by default
+log4j.appender.stdout=org.apache.log4j.ConsoleAppender
+log4j.appender.stdout.layout=org.apache.log4j.PatternLayout
+log4j.appender.stdout.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n
+
+# File appender
+log4j.appender.out=org.apache.log4j.FileAppender
+log4j.appender.out.layout=org.apache.log4j.PatternLayout
+log4j.appender.out.layout.ConversionPattern=%d [%-15.15t] %-5p %-30.30c{1} - %m%n
+log4j.appender.out.file=target/servicemix-test.log
+log4j.appender.out.append=true

Propchange: incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/log4j.properties
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/org/apache/servicemix/lwcontainer/au1-src/META-INF/DISCLAIMER.txt
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/org/apache/servicemix/lwcontainer/au1-src/META-INF/DISCLAIMER.txt?rev=379627&r1=379626&r2=379627&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/org/apache/servicemix/lwcontainer/au1-src/META-INF/DISCLAIMER.txt (original)
+++ incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/org/apache/servicemix/lwcontainer/au1-src/META-INF/DISCLAIMER.txt Tue Feb 21 15:40:05 2006
@@ -1,7 +1,7 @@
-ActiveMQ is an effort undergoing incubation at the Apache Software Foundation
-(ASF), sponsored by the Geronimo PMC. Incubation is required of all newly
-accepted projects until a further review indicates that the infrastructure,
-communications, and decision making process have stabilized in a manner
-consistent with other successful ASF projects. While incubation status is not
-necessarily a reflection of the completeness or stability of the code, it does
+ActiveMQ is an effort undergoing incubation at the Apache Software Foundation
+(ASF), sponsored by the Geronimo PMC. Incubation is required of all newly
+accepted projects until a further review indicates that the infrastructure,
+communications, and decision making process have stabilized in a manner
+consistent with other successful ASF projects. While incubation status is not
+necessarily a reflection of the completeness or stability of the code, it does
 indicate that the project has yet to be fully endorsed by the ASF.

Propchange: incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/org/apache/servicemix/lwcontainer/au1-src/META-INF/DISCLAIMER.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/org/apache/servicemix/lwcontainer/au1-src/META-INF/LICENSE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/org/apache/servicemix/lwcontainer/component-src/META-INF/DISCLAIMER.txt
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/org/apache/servicemix/lwcontainer/component-src/META-INF/DISCLAIMER.txt?rev=379627&r1=379626&r2=379627&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/org/apache/servicemix/lwcontainer/component-src/META-INF/DISCLAIMER.txt (original)
+++ incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/org/apache/servicemix/lwcontainer/component-src/META-INF/DISCLAIMER.txt Tue Feb 21 15:40:05 2006
@@ -1,7 +1,7 @@
-ActiveMQ is an effort undergoing incubation at the Apache Software Foundation
-(ASF), sponsored by the Geronimo PMC. Incubation is required of all newly
-accepted projects until a further review indicates that the infrastructure,
-communications, and decision making process have stabilized in a manner
-consistent with other successful ASF projects. While incubation status is not
-necessarily a reflection of the completeness or stability of the code, it does
+ActiveMQ is an effort undergoing incubation at the Apache Software Foundation
+(ASF), sponsored by the Geronimo PMC. Incubation is required of all newly
+accepted projects until a further review indicates that the infrastructure,
+communications, and decision making process have stabilized in a manner
+consistent with other successful ASF projects. While incubation status is not
+necessarily a reflection of the completeness or stability of the code, it does
 indicate that the project has yet to be fully endorsed by the ASF.

Propchange: incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/org/apache/servicemix/lwcontainer/component-src/META-INF/DISCLAIMER.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/servicemix/trunk/servicemix-lwcontainer/src/test/resources/org/apache/servicemix/lwcontainer/component-src/META-INF/LICENSE.txt
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/servicemix/trunk/servicemix-sca/maven.xml
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-sca/maven.xml?rev=379627&r1=379626&r2=379627&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-sca/maven.xml (original)
+++ incubator/servicemix/trunk/servicemix-sca/maven.xml Tue Feb 21 15:40:05 2006
@@ -1,54 +1,54 @@
-<?xml version="1.0" encoding="ISO-8859-1"?>
-
-<!--
-
-    Copyright 2005 The Apache Software Foundation
-
-    Licensed under the Apache License, Version 2.0 (the "License");
-    you may not use this file except in compliance with the License.
-    You may obtain a copy of the License at
-
-       http://www.apache.org/licenses/LICENSE-2.0
-
-    Unless required by applicable law or agreed to in writing, software
-    distributed under the License is distributed on an "AS IS" BASIS,
-    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-    See the License for the specific language governing permissions and
-    limitations under the License.
-    
--->
-
-<project default="default" 
-  xmlns:ant="jelly:ant"
-  xmlns:artifact="artifact">
-
-  <!-- redefined "default" goal from parent pom -->
-  <goal name="default" prereqs="clean, jar:install, jbi:install"/>  
-  <goal name="nightly" prereqs="clean, jar:install, jbi:install, jar:deploy, jbi:deploy"/>
-  
-  <postGoal name="java:compile">
-    <!--
-    <attainGoal name="xbean:generate" />
-    -->
-  </postGoal>
-         
-  <goal name="xbean:generate" description="Generates the XBean XSD, documentation and META-INF/services files.">
-    <path id="test.classpath">
-      <pathelement path="${maven.build.dest}" />
-      <pathelement path="${basedir}/target/classes" />
-      <pathelement path="${basedir}/target/test-classes" />
-      <path refid="maven.dependency.classpath" />
-    </path>
-
-    <taskdef name="xsdGenerate" classname="org.apache.xbean.spring.generator.MappingGeneratorTask">
-      <classpath refid="test.classpath" />
-    </taskdef>
-    <xsdGenerate
-    destFile="${basedir}/target/servicemix-sca-${pom.currentVersion}.xsd" namespace="http://servicemix.apache.org/sca/1.0"
-    		classpathref="test.classpath" srcdir="${basedir}/src/main/java"  metaInfDir="${basedir}/target/generated/"/>
-  	<copy file="${basedir}/target/servicemix-sca-${pom.currentVersion}.xsd" todir="${basedir}/target/generated/"/>
-  	<copy file="${basedir}/target/servicemix-sca-${pom.currentVersion}.xsd" todir="${basedir}/../xdocs"/>    
-    <copy file="${basedir}/target/servicemix-sca-${pom.currentVersion}.xsd.html" todir="${basedir}/../xdocs"/>
-  </goal>
-
-</project>
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!--
+
+    Copyright 2005 The Apache Software Foundation
+
+    Licensed under the Apache License, Version 2.0 (the "License");
+    you may not use this file except in compliance with the License.
+    You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+    
+-->
+
+<project default="default" 
+  xmlns:ant="jelly:ant"
+  xmlns:artifact="artifact">
+
+  <!-- redefined "default" goal from parent pom -->
+  <goal name="default" prereqs="clean, jar:install, jbi:install"/>  
+  <goal name="nightly" prereqs="clean, jar:install, jbi:install, jar:deploy, jbi:deploy"/>
+  
+  <postGoal name="java:compile">
+    <!--
+    <attainGoal name="xbean:generate" />
+    -->
+  </postGoal>
+         
+  <goal name="xbean:generate" description="Generates the XBean XSD, documentation and META-INF/services files.">
+    <path id="test.classpath">
+      <pathelement path="${maven.build.dest}" />
+      <pathelement path="${basedir}/target/classes" />
+      <pathelement path="${basedir}/target/test-classes" />
+      <path refid="maven.dependency.classpath" />
+    </path>
+
+    <taskdef name="xsdGenerate" classname="org.apache.xbean.spring.generator.MappingGeneratorTask">
+      <classpath refid="test.classpath" />
+    </taskdef>
+    <xsdGenerate
+    destFile="${basedir}/target/servicemix-sca-${pom.currentVersion}.xsd" namespace="http://servicemix.apache.org/sca/1.0"
+    		classpathref="test.classpath" srcdir="${basedir}/src/main/java"  metaInfDir="${basedir}/target/generated/"/>
+  	<copy file="${basedir}/target/servicemix-sca-${pom.currentVersion}.xsd" todir="${basedir}/target/generated/"/>
+  	<copy file="${basedir}/target/servicemix-sca-${pom.currentVersion}.xsd" todir="${basedir}/../xdocs"/>    
+    <copy file="${basedir}/target/servicemix-sca-${pom.currentVersion}.xsd.html" todir="${basedir}/../xdocs"/>
+  </goal>
+
+</project>

Propchange: incubator/servicemix/trunk/servicemix-sca/maven.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Modified: incubator/servicemix/trunk/servicemix-sca/pom.xml
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-sca/pom.xml?rev=379627&r1=379626&r2=379627&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-sca/pom.xml (original)
+++ incubator/servicemix/trunk/servicemix-sca/pom.xml Tue Feb 21 15:40:05 2006
@@ -1,164 +1,164 @@
-<?xml version="1.0" encoding="UTF-8"?>
-<!--
-
-    Copyright 2005 The Apache Software Foundation
-
-    Licensed 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.
--->
-<!-- $Rev: 359503 $ $Date: 2005-12-28 13:56:03 +0100 (mer., 28 déc. 2005) $ -->
-<project 
-    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" 
-    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
-    xmlns="http://maven.apache.org/POM/4.0.0">
-    
-    <parent>
-        <groupId>incubator-servicemix</groupId>
-        <artifactId>servicemix</artifactId>
-        <version>3.0-SNAPSHOT</version>
-        <relativePath>../pom.xml</relativePath>
-    </parent>
-    
-    <modelVersion>4.0.0</modelVersion>
-    <groupId>incubator-servicemix</groupId>
-    <artifactId>servicemix-sca</artifactId>
-    <packaging>jbi-component</packaging>
-    <name>ServiceMix :: SCA Service Engine</name>
-    <description>SCA service engine</description>
-    <dependencies>
-    
-        <dependency>
-            <groupId>incubator-servicemix</groupId>
-            <artifactId>servicemix-common</artifactId>
-        </dependency>
-        <dependency>
-        	<groupId>org.eclipse.emf</groupId>
-        	<artifactId>commonj-sdo</artifactId>
-        	<version>2.1.0</version>
-        </dependency>
-        <dependency>
-        	<groupId>org.eclipse.emf</groupId>
-        	<artifactId>ecore</artifactId>
-        	<version>2.1.0</version>
-        </dependency>
-        <dependency>
-        	<groupId>org.eclipse.emf</groupId>
-        	<artifactId>common</artifactId>
-        	<version>2.1.0</version>
-        </dependency>
-        <dependency>
-        	<groupId>org.eclipse.emf</groupId>
-        	<artifactId>ecore-sdo</artifactId>
-        	<version>2.1.1</version>
-        </dependency>
-        <dependency>
-        	<groupId>org.eclipse.emf</groupId>
-        	<artifactId>ecore-change</artifactId>
-        	<version>2.1.0</version>
-        </dependency>
-        <dependency>
-        	<groupId>org.eclipse.emf</groupId>
-        	<artifactId>ecore-xmi</artifactId>
-        	<version>2.1.0</version>
-        </dependency>
-        <dependency>
-        	<groupId>org.eclipse.wtp</groupId>
-        	<artifactId>wsdl</artifactId>
-        	<version>1.0.0</version>
-        </dependency>
-        <dependency>
-        	<groupId>org.eclipse.xsd</groupId>
-        	<artifactId>xsd</artifactId>
-        	<version>2.1.1</version>
-        </dependency>
-        <dependency>
-        	<groupId>org.apache.servicemix.dependencies.tuscany</groupId>
-        	<artifactId>tuscany-common</artifactId>
-        	<version>dev-200512</version>
-        </dependency>
-        <dependency>
-        	<groupId>org.apache.servicemix.dependencies.tuscany</groupId>
-        	<artifactId>tuscany-container-java</artifactId>
-        	<version>dev-200512</version>
-        </dependency>
-        <dependency>
-        	<groupId>org.apache.servicemix.dependencies.tuscany</groupId>
-        	<artifactId>tuscany-core</artifactId>
-        	<version>dev-200512</version>
-        </dependency>
-        <dependency>
-        	<groupId>org.apache.servicemix.dependencies.tuscany</groupId>
-        	<artifactId>tuscany-model</artifactId>
-        	<version>dev-200512</version>
-        </dependency>
-        <dependency>
-        	<groupId>org.apache.servicemix.dependencies.tuscany</groupId>
-        	<artifactId>sca-api</artifactId>
-        	<version>dev-200512</version>
-        </dependency>
-        <dependency>
-          <groupId>com.sun.xml</groupId>
-          <artifactId>jaxb-impl</artifactId>
-          <version>2.0-JAXWS-2.0-EA3</version>
-        </dependency>
-        
-        <dependency>
-        	<groupId>junit</groupId>
-        	<artifactId>junit</artifactId>
-        	<scope>test</scope>
-        </dependency>
-        <dependency>
-        	<groupId>incubator-servicemix</groupId>
-        	<artifactId>servicemix-core</artifactId>
-        	<scope>provided</scope>
-        </dependency>
-    </dependencies>
-
-    <build>
-        <resources>
-            <resource>
-                <directory>src/main/resources</directory>
-                <includes>
-                    <include>**/*.properties</include>
-                    <include>**/*.xml</include>
-                    <include>**/*</include>
-                </includes>
-            </resource>
-            <resource>
-                <directory>target/generated</directory>
-                <includes>
-                    <include>**/*</include>
-                </includes>
-            </resource>
-        </resources>
-        <plugins>
-            <plugin>
-                <groupId>org.apache.maven.plugins</groupId>
-                <artifactId>maven-compiler-plugin</artifactId>
-                <configuration>
-                    <source>1.5</source>
-                    <target>1.5</target>
-                </configuration>
-             </plugin>
-           <plugin>
-                <groupId>org.apache.servicemix.plugins</groupId>
-                <artifactId>maven2-jbi-plugin</artifactId>
-                <configuration>
-                   <type>service-engine</type>
-                   <bootstrap>org.apache.servicemix.sca.ScaBootstrap</bootstrap>
-                   <component>org.apache.servicemix.sca.ScaComponent</component>
-                </configuration>
-            </plugin>
-        </plugins>
-    </build>
-    
-</project>
+<?xml version="1.0" encoding="UTF-8"?>
+<!--
+
+    Copyright 2005 The Apache Software Foundation
+
+    Licensed 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.
+-->
+<!-- $Rev: 359503 $ $Date: 2005-12-28 13:56:03 +0100 (mer., 28 déc. 2005) $ -->
+<project 
+    xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd" 
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" 
+    xmlns="http://maven.apache.org/POM/4.0.0">
+    
+    <parent>
+        <groupId>incubator-servicemix</groupId>
+        <artifactId>servicemix</artifactId>
+        <version>3.0-SNAPSHOT</version>
+        <relativePath>../pom.xml</relativePath>
+    </parent>
+    
+    <modelVersion>4.0.0</modelVersion>
+    <groupId>incubator-servicemix</groupId>
+    <artifactId>servicemix-sca</artifactId>
+    <packaging>jbi-component</packaging>
+    <name>ServiceMix :: SCA Service Engine</name>
+    <description>SCA service engine</description>
+    <dependencies>
+    
+        <dependency>
+            <groupId>incubator-servicemix</groupId>
+            <artifactId>servicemix-common</artifactId>
+        </dependency>
+        <dependency>
+        	<groupId>org.eclipse.emf</groupId>
+        	<artifactId>commonj-sdo</artifactId>
+        	<version>2.1.0</version>
+        </dependency>
+        <dependency>
+        	<groupId>org.eclipse.emf</groupId>
+        	<artifactId>ecore</artifactId>
+        	<version>2.1.0</version>
+        </dependency>
+        <dependency>
+        	<groupId>org.eclipse.emf</groupId>
+        	<artifactId>common</artifactId>
+        	<version>2.1.0</version>
+        </dependency>
+        <dependency>
+        	<groupId>org.eclipse.emf</groupId>
+        	<artifactId>ecore-sdo</artifactId>
+        	<version>2.1.1</version>
+        </dependency>
+        <dependency>
+        	<groupId>org.eclipse.emf</groupId>
+        	<artifactId>ecore-change</artifactId>
+        	<version>2.1.0</version>
+        </dependency>
+        <dependency>
+        	<groupId>org.eclipse.emf</groupId>
+        	<artifactId>ecore-xmi</artifactId>
+        	<version>2.1.0</version>
+        </dependency>
+        <dependency>
+        	<groupId>org.eclipse.wtp</groupId>
+        	<artifactId>wsdl</artifactId>
+        	<version>1.0.0</version>
+        </dependency>
+        <dependency>
+        	<groupId>org.eclipse.xsd</groupId>
+        	<artifactId>xsd</artifactId>
+        	<version>2.1.1</version>
+        </dependency>
+        <dependency>
+        	<groupId>org.apache.servicemix.dependencies.tuscany</groupId>
+        	<artifactId>tuscany-common</artifactId>
+        	<version>dev-200512</version>
+        </dependency>
+        <dependency>
+        	<groupId>org.apache.servicemix.dependencies.tuscany</groupId>
+        	<artifactId>tuscany-container-java</artifactId>
+        	<version>dev-200512</version>
+        </dependency>
+        <dependency>
+        	<groupId>org.apache.servicemix.dependencies.tuscany</groupId>
+        	<artifactId>tuscany-core</artifactId>
+        	<version>dev-200512</version>
+        </dependency>
+        <dependency>
+        	<groupId>org.apache.servicemix.dependencies.tuscany</groupId>
+        	<artifactId>tuscany-model</artifactId>
+        	<version>dev-200512</version>
+        </dependency>
+        <dependency>
+        	<groupId>org.apache.servicemix.dependencies.tuscany</groupId>
+        	<artifactId>sca-api</artifactId>
+        	<version>dev-200512</version>
+        </dependency>
+        <dependency>
+          <groupId>com.sun.xml</groupId>
+          <artifactId>jaxb-impl</artifactId>
+          <version>2.0-JAXWS-2.0-EA3</version>
+        </dependency>
+        
+        <dependency>
+        	<groupId>junit</groupId>
+        	<artifactId>junit</artifactId>
+        	<scope>test</scope>
+        </dependency>
+        <dependency>
+        	<groupId>incubator-servicemix</groupId>
+        	<artifactId>servicemix-core</artifactId>
+        	<scope>provided</scope>
+        </dependency>
+    </dependencies>
+
+    <build>
+        <resources>
+            <resource>
+                <directory>src/main/resources</directory>
+                <includes>
+                    <include>**/*.properties</include>
+                    <include>**/*.xml</include>
+                    <include>**/*</include>
+                </includes>
+            </resource>
+            <resource>
+                <directory>target/generated</directory>
+                <includes>
+                    <include>**/*</include>
+                </includes>
+            </resource>
+        </resources>
+        <plugins>
+            <plugin>
+                <groupId>org.apache.maven.plugins</groupId>
+                <artifactId>maven-compiler-plugin</artifactId>
+                <configuration>
+                    <source>1.5</source>
+                    <target>1.5</target>
+                </configuration>
+             </plugin>
+           <plugin>
+                <groupId>org.apache.servicemix.plugins</groupId>
+                <artifactId>maven2-jbi-plugin</artifactId>
+                <configuration>
+                   <type>service-engine</type>
+                   <bootstrap>org.apache.servicemix.sca.ScaBootstrap</bootstrap>
+                   <component>org.apache.servicemix.sca.ScaComponent</component>
+                </configuration>
+            </plugin>
+        </plugins>
+    </build>
+    
+</project>

Propchange: incubator/servicemix/trunk/servicemix-sca/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/servicemix/trunk/servicemix-sca/project.properties
------------------------------------------------------------------------------
    svn:eol-style = native