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/08/17 19:06:23 UTC

svn commit: r986398 [2/2] - in /servicemix/archetypes/trunk: ./ servicemix-bean-service-unit/src/main/resources/archetype-resources/ servicemix-bean-service-unit/src/main/resources/archetype-resources/src/main/resources/ servicemix-binding-component/sr...

Added: servicemix/archetypes/trunk/servicemix-mail-service-unit/src/main/resources/META-INF/maven/archetype.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-mail-service-unit/src/main/resources/META-INF/maven/archetype.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-mail-service-unit/src/main/resources/META-INF/maven/archetype.xml (added)
+++ servicemix/archetypes/trunk/servicemix-mail-service-unit/src/main/resources/META-INF/maven/archetype.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+    <!--
+
+        Licensed to the Apache Software Foundation (ASF) under one or more
+        contributor license agreements. See the NOTICE file distributed with
+        this work for additional information regarding copyright ownership.
+        The ASF licenses this file to You under the Apache License, Version
+        2.0 (the "License"); you may not use this file except in compliance
+        with the License. You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0 Unless required by
+        applicable law or agreed to in writing, software distributed under the
+        License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
+        CONDITIONS OF ANY KIND, either express or implied. See the License for
+        the specific language governing permissions and limitations under the
+        License.
+    -->
+<archetype>
+    <id>servicemix-mail-service-unit</id>
+    <resources>
+        <resource>src/main/resources/xbean.xml</resource>
+    </resources>
+</archetype>    
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-mail-service-unit/src/main/resources/META-INF/maven/archetype.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-mail-service-unit/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-mail-service-unit/src/main/resources/archetype-resources/pom.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-mail-service-unit/src/main/resources/archetype-resources/pom.xml (added)
+++ servicemix/archetypes/trunk/servicemix-mail-service-unit/src/main/resources/archetype-resources/pom.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,32 @@
+<?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">
+
+    <!-- Generated by Apache ServiceMix Archetype -->
+    
+    <groupId>${groupId}</groupId>
+    <artifactId>${artifactId}</artifactId>
+    <packaging>jbi-service-unit</packaging>
+    <version>${version}</version>
+    <name>Apache ServiceMix :: Mail Service Unit</name>
+    
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.servicemix</groupId>
+            <artifactId>servicemix-mail</artifactId>
+            <version>@{components.version}</version>
+        </dependency>
+    </dependencies>
+    
+    <build>
+        <defaultGoal>install</defaultGoal>
+        <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>
+
+</project>
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-mail-service-unit/src/main/resources/archetype-resources/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-mail-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-mail-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-mail-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml (added)
+++ servicemix/archetypes/trunk/servicemix-mail-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Generated by Apache ServiceMix Archetype -->
+<beans xmlns:mail="http://servicemix.apache.org/mail/1.0"
+    xmlns:replaceMe="http://servicemix.apache.org/replaceMe" xmlns="http://www.springframework.org/schema/beans"
+    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+    xsi:schemaLocation="http://servicemix.apache.org/mail/1.0 http://servicemix.apache.org/schema/servicemix-mail-@{components-version}.xsd
+       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
+
+    <!-- BEGIN SNIPPET: mail-poller -->
+    <mail:poller service="replaceMe:serviceName" endpoint="mail-poller"
+        targetService="replaceMe:targetServiceName"
+        targetEndpoint="targetEndpoint"
+        period="10000" debugMode="false"
+        connection="imap://username@host/INBOX?password=mypass"
+        deleteProcessedMessages="false" processOnlyUnseenMessages="true" />
+    <!-- END SNIPPET: mail-poller -->  
+    
+    <!-- BEGIN SNIPPET: mail-sender -->
+    <mail:sender service="replaceMe:serviceName" 
+            endpoint="mail-sender"
+            sender="no-reply@mycompany.com" 
+            receiver="your-static-receiver-address@some-host.com"
+            debugMode="false" 
+            connection="smtp://username@host?password=mypass" />
+    <!-- END SNIPPET: mail-sender -->     
+
+</beans>
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-mail-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-quartz-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-quartz-service-unit/pom.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-quartz-service-unit/pom.xml (added)
+++ servicemix/archetypes/trunk/servicemix-quartz-service-unit/pom.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,33 @@
+<?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.
+    -->
+    
+    <modelVersion>4.0.0</modelVersion>
+    
+    <parent>
+        <groupId>org.apache.servicemix</groupId>
+        <artifactId>archetypes</artifactId>
+        <version>2010.01-SNAPSHOT</version>
+    </parent>
+    
+    <groupId>org.apache.servicemix.tooling</groupId>
+    <artifactId>servicemix-quartz-service-unit</artifactId>
+    <name>Apache ServiceMix :: Archetypes :: Quartz Service Unit</name>
+
+</project>
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-quartz-service-unit/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-quartz-service-unit/src/main/resources/META-INF/maven/archetype.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-quartz-service-unit/src/main/resources/META-INF/maven/archetype.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-quartz-service-unit/src/main/resources/META-INF/maven/archetype.xml (added)
+++ servicemix/archetypes/trunk/servicemix-quartz-service-unit/src/main/resources/META-INF/maven/archetype.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,26 @@
+<?xml version="1.0" encoding="UTF-8"?>
+    <!--
+
+        Licensed to the Apache Software Foundation (ASF) under one or more
+        contributor license agreements. See the NOTICE file distributed with
+        this work for additional information regarding copyright ownership.
+        The ASF licenses this file to You under the Apache License, Version
+        2.0 (the "License"); you may not use this file except in compliance
+        with the License. You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0 Unless required by
+        applicable law or agreed to in writing, software distributed under the
+        License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
+        CONDITIONS OF ANY KIND, either express or implied. See the License for
+        the specific language governing permissions and limitations under the
+        License.
+    -->
+<archetype>
+    <id>servicemix-quartz-service-unit</id>
+    <sources>
+        <source>src/main/java/CustomMarshaler.java</source>
+    </sources>
+    <resources>
+        <resource>src/main/resources/xbean.xml</resource>
+    </resources>
+</archetype>    
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-quartz-service-unit/src/main/resources/META-INF/maven/archetype.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-quartz-service-unit/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-quartz-service-unit/src/main/resources/archetype-resources/pom.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-quartz-service-unit/src/main/resources/archetype-resources/pom.xml (added)
+++ servicemix/archetypes/trunk/servicemix-quartz-service-unit/src/main/resources/archetype-resources/pom.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,34 @@
+<?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">
+    
+    <!-- Generated by Apache ServiceMix Archetype -->
+    
+    <modelVersion>4.0.0</modelVersion>
+    
+    <groupId>${groupId}</groupId>
+    <artifactId>${artifactId}</artifactId>
+    <packaging>jbi-service-unit</packaging>
+    <version>${version}</version>
+    <name>Apache ServiceMix :: Quartz Service Unit</name>
+    
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.servicemix</groupId>
+            <artifactId>servicemix-quartz</artifactId>
+            <version>@{components.version}</version>
+        </dependency>
+    </dependencies>
+    
+    <build>
+        <defaultGoal>install</defaultGoal>
+        <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>
+    
+</project>
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-quartz-service-unit/src/main/resources/archetype-resources/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-quartz-service-unit/src/main/resources/archetype-resources/src/main/java/CustomMarshaler.java
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-quartz-service-unit/src/main/resources/archetype-resources/src/main/java/CustomMarshaler.java?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-quartz-service-unit/src/main/resources/archetype-resources/src/main/java/CustomMarshaler.java (added)
+++ servicemix/archetypes/trunk/servicemix-quartz-service-unit/src/main/resources/archetype-resources/src/main/java/CustomMarshaler.java Tue Aug 17 17:06:18 2010
@@ -0,0 +1,16 @@
+import javax.jbi.messaging.MessagingException;
+import javax.jbi.messaging.NormalizedMessage;
+
+import org.apache.servicemix.quartz.support.DefaultQuartzMarshaler;
+import org.quartz.JobExecutionContext;
+import org.quartz.JobExecutionException;
+
+public class CustomMarshaler extends DefaultQuartzMarshaler {
+
+    @Override
+    public void populateNormalizedMessage(NormalizedMessage message, JobExecutionContext context) throws JobExecutionException, MessagingException {
+        super.populateNormalizedMessage(message, context);
+        message.setContent(new StringSource((String) context.getJobDetail(), getJobDataMap().get("xml")));
+    }
+
+}
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-quartz-service-unit/src/main/resources/archetype-resources/src/main/java/CustomMarshaler.java
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-quartz-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-quartz-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-quartz-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml (added)
+++ servicemix/archetypes/trunk/servicemix-quartz-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,58 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Generated by Apache ServiceMix Archetype -->
+<beans xmlns:quartz="http://servicemix.apache.org/quartz/1.0"
+	xmlns:replaceMe="http://servicemix.apache.org/replaceMe" xmlns="http://www.springframework.org/schema/beans"
+	xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+	xsi:schemaLocation="http://servicemix.apache.org/quartz/1.0 http://servicemix.apache.org/schema/servicemix-quartz-@{components-version}.xsd
+       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
+
+	<!-- BEGIN SNIPPET: cron-trigger -->
+	<quartz:endpoint service="replaceMe:serviceName"
+		endpoint="cron-trigger" 
+		targetService="replaceMe:targetServiceName"
+		targetEndpoint="targetEndpoint">
+		<quartz:trigger>
+			<quartz:cron cronExpression="0/5 * * * * ?" />
+		</quartz:trigger>
+	</quartz:endpoint>
+	<!-- END SNIPPET: cron-trigger -->
+	
+	<!-- BEGIN SNIPPET: simple-trigger -->
+    <quartz:endpoint service="replaceMe:serviceName"
+        endpoint="simple-trigger" 
+        targetService="replaceMe:targetServiceName"
+        targetEndpoint="targetEndpoint">
+        <quartz:trigger>
+            <quartz:simple repeatCount="0" repeatInterval="1000" />
+        </quartz:trigger>
+    </quartz:endpoint>
+    <!-- END SNIPPET:  -->
+	
+	<!-- BEGIN SNIPPET: quartz-custom-marshaler -->
+    <quartz:endpoint service="replaceMe:serviceName"
+        endpoint="quartz-custom-marshaler" 
+        targetService="replaceMe:targetServiceName"
+        targetEndpoint="targetEndpoint">
+        <quartz:jobDetail>
+            <quartz:jobDetail>
+                <quartz:jobDataAsMap>
+                    <quartz:property key="xml"><![CDATA[
+              <hello>world</hello>
+            ]]></quartz:property>
+                </quartz:jobDataAsMap>
+            </quartz:jobDetail>
+        </quartz:jobDetail>
+
+        <quartz:triggers>
+            <quartz:simple repeatCount="0" repeatInterval="1000" />
+            <quartz:cron cronExpression="0 * 1 * * ?" />
+        </quartz:triggers>
+
+        <quartz:marshaler>
+            <bean class="CustomMarshaler" />
+        </quartz:marshaler>
+
+    </quartz:endpoint>
+    <!-- END SNIPPET: quartz-custom-marshaler -->
+
+</beans>

Propchange: servicemix/archetypes/trunk/servicemix-quartz-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
------------------------------------------------------------------------------
    svn:executable = *

Propchange: servicemix/archetypes/trunk/servicemix-quartz-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-saxon-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-saxon-service-unit/pom.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-saxon-service-unit/pom.xml (added)
+++ servicemix/archetypes/trunk/servicemix-saxon-service-unit/pom.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,33 @@
+<?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.
+    -->
+    
+    <modelVersion>4.0.0</modelVersion>
+    
+    <parent>
+        <groupId>org.apache.servicemix</groupId>
+        <artifactId>archetypes</artifactId>
+        <version>2010.01-SNAPSHOT</version>
+    </parent>
+    
+    <groupId>org.apache.servicemix.tooling</groupId>
+    <artifactId>servicemix-saxon-service-unit</artifactId>
+    <name>Apache ServiceMix :: Archetypes :: Saxon Service Unit</name>
+
+</project>
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-saxon-service-unit/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/META-INF/maven/archetype.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/META-INF/maven/archetype.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/META-INF/maven/archetype.xml (added)
+++ servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/META-INF/maven/archetype.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,25 @@
+<?xml version="1.0" encoding="UTF-8"?>
+    <!--
+
+        Licensed to the Apache Software Foundation (ASF) under one or more
+        contributor license agreements. See the NOTICE file distributed with
+        this work for additional information regarding copyright ownership.
+        The ASF licenses this file to You under the Apache License, Version
+        2.0 (the "License"); you may not use this file except in compliance
+        with the License. You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0 Unless required by
+        applicable law or agreed to in writing, software distributed under the
+        License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
+        CONDITIONS OF ANY KIND, either express or implied. See the License for
+        the specific language governing permissions and limitations under the
+        License.
+    -->
+<archetype>
+    <id>servicemix-saxon-service-unit</id>
+    <resources>
+        <resource>src/main/resources/xbean.xml</resource>
+        <resource>src/main/resources/query.xq</resource>
+        <resource>src/main/resources/transform.xsl</resource>
+    </resources>
+</archetype>    
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/META-INF/maven/archetype.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/archetype-resources/pom.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/archetype-resources/pom.xml (added)
+++ servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/archetype-resources/pom.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,32 @@
+<?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">
+
+    <!-- Generated by Apache ServiceMix Archetype -->
+    
+    <groupId>${groupId}</groupId>
+    <artifactId>${artifactId}</artifactId>
+    <packaging>jbi-service-unit</packaging>
+    <version>${version}</version>
+    <name>Apache ServiceMix :: Saxon Service Unit</name>
+    
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.servicemix</groupId>
+            <artifactId>servicemix-saxon</artifactId>
+            <version>@{components.version}</version>
+        </dependency>
+    </dependencies>
+    
+    <build>
+        <defaultGoal>install</defaultGoal>
+        <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>
+
+</project>
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/archetype-resources/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/archetype-resources/src/main/resources/query.xq
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/archetype-resources/src/main/resources/query.xq?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/archetype-resources/src/main/resources/query.xq (added)
+++ servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/archetype-resources/src/main/resources/query.xq Tue Aug 17 17:06:18 2010
@@ -0,0 +1,24 @@
+(:
+
+    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.
+:)
+<titles>
+{
+  for $x in /bookstore/book
+  where $x/price > 30
+  return $x/title
+}
+</titles>

Added: servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/archetype-resources/src/main/resources/transform.xsl
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/archetype-resources/src/main/resources/transform.xsl?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/archetype-resources/src/main/resources/transform.xsl (added)
+++ servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/archetype-resources/src/main/resources/transform.xsl Tue Aug 17 17:06:18 2010
@@ -0,0 +1,41 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+<!--
+
+    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.
+
+-->
+<xsl:stylesheet
+  xmlns:xsl='http://www.w3.org/1999/XSL/Transform'
+  version='1.0'>
+
+  <xsl:output method="xml" indent="yes" encoding="ISO-8859-1"/>
+
+  <xsl:template match="/">
+    <transformed>
+      <xsl:copy>
+        <xsl:copy-of select="attribute::*"/>
+        <xsl:apply-templates/>
+      </xsl:copy>
+    </transformed>
+  </xsl:template>
+  
+  <xsl:template match="node() | @*">
+    <xsl:copy>
+      <xsl:apply-templates select="node() | @*"/>
+    </xsl:copy>
+  </xsl:template>
+  
+</xsl:stylesheet>

Propchange: servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/archetype-resources/src/main/resources/transform.xsl
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml (added)
+++ servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,54 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Generated by Apache ServiceMix Archetype -->
+<beans xmlns:saxon="http://servicemix.apache.org/saxon/1.0"
+       xmlns:replaceMe="http://servicemix.apache.org/replaceMe"
+       xmlns="http://www.springframework.org/schema/beans"
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xsi:schemaLocation="http://servicemix.apache.org/saxon/1.0 http://servicemix.apache.org/schema/servicemix-saxon-@{components-version}.xsd
+       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
+
+  <!-- START SNIPPET: xquery --> 
+  <saxon:xquery service="replaceMe:serviceName" endpoint="saxon-xquery"
+                resource="classpath:query.xq" />
+  <!-- END SNIPPET: xquery --> 
+  
+  <!-- START SNIPPET: xquery-inline --> 
+  <saxon:xquery service="replaceMe:serviceName" endpoint="saxon-xquery-inline">
+    <!-- CDATA are not supported currently -->
+    <saxon:query>
+      for $x in /bookstore/book
+      where $x/price > 30
+      return $x/title
+    </saxon:query>
+    <saxon:outputProperties>
+      <saxon:property key="{http://saxon.sf.net/}wrap-result-sequence">yes</saxon:property>
+    </saxon:outputProperties>
+  </saxon:xquery>
+  <!-- END SNIPPET: xquery-inline --> 
+  
+  <!-- START SNIPPET: xquery-dynamic -->
+  <saxon:xquery service="replaceMe:serviceName" endpoint="saxon-xquery-dynamic">
+    <saxon:expression>
+      <bean class="org.apache.servicemix.expression.PropertyExpression">
+        <property name="property" value="xquery.source" />
+      </bean>
+    </saxon:expression>
+  </saxon:xquery>
+  <!-- END SNIPPET: xquery-dynamic -->
+  
+  <!--  START SNIPPET: saxon-xslt -->
+  <saxon:xslt service="replaceMe:serviceName" endpoint="saxon-xslt"
+              resource="classpath:transform.xsl" />
+  <!--  END SNIPPED: saxon-xslt -->           
+  
+  <!-- START SNIPPET: saxon-xslt-dynamic -->
+  <saxon:xslt service="replaceMe:serviceName" endpoint="saxon-xslt-dynamic">
+    <saxon:expression>
+      <bean class="org.apache.servicemix.expression.PropertyExpression">
+        <property name="property" value="xslt.source" />
+      </bean>
+    </saxon:expression>
+  </saxon:xslt>
+  <!-- END SNIPPET: saxon-xslt-dynamic -->
+
+</beans>

Propchange: servicemix/archetypes/trunk/servicemix-saxon-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Modified: servicemix/archetypes/trunk/servicemix-service-assembly/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-service-assembly/src/main/resources/archetype-resources/pom.xml?rev=986398&r1=986397&r2=986398&view=diff
==============================================================================
--- servicemix/archetypes/trunk/servicemix-service-assembly/src/main/resources/archetype-resources/pom.xml (original)
+++ servicemix/archetypes/trunk/servicemix-service-assembly/src/main/resources/archetype-resources/pom.xml Tue Aug 17 17:06:18 2010
@@ -1,22 +1,7 @@
 <?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.
-	-->
+	<!-- Generated by Apache ServiceMix Archetype -->
 
 	<modelVersion>4.0.0</modelVersion>
 

Modified: servicemix/archetypes/trunk/servicemix-service-engine/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-service-engine/src/main/resources/archetype-resources/pom.xml?rev=986398&r1=986397&r2=986398&view=diff
==============================================================================
--- servicemix/archetypes/trunk/servicemix-service-engine/src/main/resources/archetype-resources/pom.xml (original)
+++ servicemix/archetypes/trunk/servicemix-service-engine/src/main/resources/archetype-resources/pom.xml Tue Aug 17 17:06:18 2010
@@ -1,23 +1,7 @@
 <?xml version="1.0" encoding="UTF-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/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.
-	-->
+	<!-- Generated by Apache ServiceMix Archetype -->
 
 	<modelVersion>4.0.0</modelVersion>
 

Modified: servicemix/archetypes/trunk/servicemix-service-unit/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-service-unit/src/main/resources/archetype-resources/pom.xml?rev=986398&r1=986397&r2=986398&view=diff
==============================================================================
--- servicemix/archetypes/trunk/servicemix-service-unit/src/main/resources/archetype-resources/pom.xml (original)
+++ servicemix/archetypes/trunk/servicemix-service-unit/src/main/resources/archetype-resources/pom.xml Tue Aug 17 17:06:18 2010
@@ -1,22 +1,7 @@
 <?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.
-	-->
+	<!-- Generated by Apache ServiceMix Archetype -->
 
 	<modelVersion>4.0.0</modelVersion>
 

Modified: servicemix/archetypes/trunk/servicemix-shared-library/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-shared-library/src/main/resources/archetype-resources/pom.xml?rev=986398&r1=986397&r2=986398&view=diff
==============================================================================
--- servicemix/archetypes/trunk/servicemix-shared-library/src/main/resources/archetype-resources/pom.xml (original)
+++ servicemix/archetypes/trunk/servicemix-shared-library/src/main/resources/archetype-resources/pom.xml Tue Aug 17 17:06:18 2010
@@ -1,22 +1,7 @@
 <?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.
-	-->
+	<!-- Generated by Apache ServiceMix Archetype -->
 
 	<modelVersion>4.0.0</modelVersion>
 

Added: servicemix/archetypes/trunk/servicemix-smpp-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-smpp-service-unit/pom.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-smpp-service-unit/pom.xml (added)
+++ servicemix/archetypes/trunk/servicemix-smpp-service-unit/pom.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,31 @@
+<?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.
+    -->
+    
+    <parent>
+        <groupId>org.apache.servicemix</groupId>
+        <artifactId>archetypes</artifactId>
+        <version>2010.01-SNAPSHOT</version>
+    </parent>
+    
+    <groupId>org.apache.servicemix.tooling</groupId>
+    <artifactId>servicemix-smpp-service-unit</artifactId>
+    <name>Apache ServiceMix :: Archetypes :: SMPP Service Unit</name>
+
+</project>
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-smpp-service-unit/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-smpp-service-unit/src/main/resources/META-INF/maven/archetype.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-smpp-service-unit/src/main/resources/META-INF/maven/archetype.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-smpp-service-unit/src/main/resources/META-INF/maven/archetype.xml (added)
+++ servicemix/archetypes/trunk/servicemix-smpp-service-unit/src/main/resources/META-INF/maven/archetype.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+    <!--
+
+        Licensed to the Apache Software Foundation (ASF) under one or more
+        contributor license agreements. See the NOTICE file distributed with
+        this work for additional information regarding copyright ownership.
+        The ASF licenses this file to You under the Apache License, Version
+        2.0 (the "License"); you may not use this file except in compliance
+        with the License. You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0 Unless required by
+        applicable law or agreed to in writing, software distributed under the
+        License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
+        CONDITIONS OF ANY KIND, either express or implied. See the License for
+        the specific language governing permissions and limitations under the
+        License.
+    -->
+<archetype>
+    <id>servicemix-smpp-service-unit</id>
+    <resources>
+        <resource>src/main/resources/xbean.xml</resource>
+    </resources>
+</archetype>    
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-smpp-service-unit/src/main/resources/META-INF/maven/archetype.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-smpp-service-unit/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-smpp-service-unit/src/main/resources/archetype-resources/pom.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-smpp-service-unit/src/main/resources/archetype-resources/pom.xml (added)
+++ servicemix/archetypes/trunk/servicemix-smpp-service-unit/src/main/resources/archetype-resources/pom.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,34 @@
+<?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">
+
+    <!-- Generated by Apache ServiceMix Archetype -->
+    
+    <modelVersion>4.0.0</modelVersion>
+    
+    <groupId>${groupId}</groupId>
+    <artifactId>${artifactId}</artifactId>
+    <packaging>jbi-service-unit</packaging>
+    <version>${version}</version>
+    <name>Apache ServiceMix :: SMPP Service Unit</name>
+    
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.servicemix</groupId>
+            <artifactId>servicemix-smpp</artifactId>
+            <version>@{components.version}</version>
+        </dependency>
+    </dependencies>
+    
+    <build>
+        <defaultGoal>install</defaultGoal>
+        <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>
+
+</project>
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-smpp-service-unit/src/main/resources/archetype-resources/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-smpp-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-smpp-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-smpp-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml (added)
+++ servicemix/archetypes/trunk/servicemix-smpp-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,29 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Generated by Apache ServiceMix Archetype -->
+<beans xmlns:smpp="http://servicemix.apache.org/smpp/1.0"
+       xmlns:replaceMe="http://servicemix.apache.org/replaceMe"
+       xmlns="http://www.springframework.org/schema/beans"
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xsi:schemaLocation="
+            http://servicemix.apache.org/smpp/1.0 http://servicemix.apache.org/schema/servicemix-smpp-@{components-version}.xsd
+            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
+
+    <!-- BEGIN SNIPPET: smpp-consumer -->
+    <smpp:consumer service="replaceMe:serviceName"
+                   endpoint="smpp-consumer"
+                   host="smpp.your.com"
+                   port="2700"
+                   systemId="user"
+                   password="password"/>
+    <!-- END SNIPPET: smpp-consumer -->  
+    
+    <!-- BEGIN SNIPPET: smpp-provider -->
+    <smpp:provider service="replaceMe:serviceName"
+                   endpoint="smpp-provider"
+                   host="smpp.your.com"
+                   port="2700"
+                   systemId="user"
+                   password="password"/>
+    <!-- END SNIPPET: smpp-provider -->                           
+       
+</beans>
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-smpp-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-snmp-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-snmp-service-unit/pom.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-snmp-service-unit/pom.xml (added)
+++ servicemix/archetypes/trunk/servicemix-snmp-service-unit/pom.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,33 @@
+<?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.
+    -->
+    
+    <modelVersion>4.0.0</modelVersion>
+    
+    <parent>
+        <groupId>org.apache.servicemix</groupId>
+        <artifactId>archetypes</artifactId>
+        <version>2010.01-SNAPSHOT</version>
+    </parent>
+    
+    <groupId>org.apache.servicemix.tooling</groupId>
+    <artifactId>servicemix-snmp-service-unit</artifactId>
+    <name>Apache ServiceMix :: Archetypes :: SNMP Service Unit</name>
+
+</project>
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-snmp-service-unit/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-snmp-service-unit/src/main/resources/META-INF/maven/archetype.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-snmp-service-unit/src/main/resources/META-INF/maven/archetype.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-snmp-service-unit/src/main/resources/META-INF/maven/archetype.xml (added)
+++ servicemix/archetypes/trunk/servicemix-snmp-service-unit/src/main/resources/META-INF/maven/archetype.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+    <!--
+
+        Licensed to the Apache Software Foundation (ASF) under one or more
+        contributor license agreements. See the NOTICE file distributed with
+        this work for additional information regarding copyright ownership.
+        The ASF licenses this file to You under the Apache License, Version
+        2.0 (the "License"); you may not use this file except in compliance
+        with the License. You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0 Unless required by
+        applicable law or agreed to in writing, software distributed under the
+        License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
+        CONDITIONS OF ANY KIND, either express or implied. See the License for
+        the specific language governing permissions and limitations under the
+        License.
+    -->
+<archetype>
+    <id>servicemix-snmp-service-unit</id>
+    <resources>
+        <resource>src/main/resources/xbean.xml</resource>
+    </resources>
+</archetype>    
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-snmp-service-unit/src/main/resources/META-INF/maven/archetype.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-snmp-service-unit/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-snmp-service-unit/src/main/resources/archetype-resources/pom.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-snmp-service-unit/src/main/resources/archetype-resources/pom.xml (added)
+++ servicemix/archetypes/trunk/servicemix-snmp-service-unit/src/main/resources/archetype-resources/pom.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,34 @@
+<?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">
+
+    <!-- Generated by Apache ServiceMix Archetype -->
+    
+    <modelVersion>4.0.0</modelVersion>
+    
+    <groupId>${groupId}</groupId>
+    <artifactId>${artifactId}</artifactId>
+    <packaging>jbi-service-unit</packaging>
+    <version>${version}</version>
+    <name>Apache ServiceMix :: SNMP Service Unit</name>
+    
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.servicemix</groupId>
+            <artifactId>servicemix-snmp</artifactId>
+            <version>@{components.version}</version>
+        </dependency>
+    </dependencies>
+    
+    <build>
+        <defaultGoal>install</defaultGoal>
+        <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>
+
+</project>
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-snmp-service-unit/src/main/resources/archetype-resources/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-snmp-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-snmp-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-snmp-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml (added)
+++ servicemix/archetypes/trunk/servicemix-snmp-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Generated by Apache ServiceMix Archetype -->
+<beans xmlns:snmp="http://servicemix.apache.org/snmp/1.0"
+       xmlns:replaceMe="http://servicemix.apache.org/replaceMe"
+       xmlns="http://www.springframework.org/schema/beans"
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xsi:schemaLocation="http://servicemix.apache.org/file/1.0 http://servicemix.apache.org/schema/servicemix-file-@{components.version}.xsd
+       http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
+
+    <!-- BEGIN SNIPPET: snmp-poller -->
+    <snmp:poller service="replaceMe:serviceName"
+                 endpoint="snmp-poller"
+                 targetService="replaceMe:targetService"
+                 period="10000"
+                 address="udp:127.0.0.1/161"
+                 oids="1.3.6.1.2.1.1.3.0 , 1.3.6.1.2.1.25.3.2.1.5.1 , 1.3.6.1.2.1.25.3.5.1.1.1 , 1.3.6.1.2.1.43.5.1.1.11.1" />
+    <!-- END SNIPPET: snmp-poller -->
+    
+    <!-- BEGIN SNIPPET: snmp-trap-consumer -->
+    <snmp:poller service="replaceMe:serviceName"
+                 endpoint="snmp-trap-consumer"
+                 targetService="replaceMe:targetServiceName"
+                 targetEndpoint="targetEndpoint"
+                 address="udp:127.0.0.1/162" />
+    <!-- END SNIPPET: snmp-trap-consumer -->
+
+</beans>
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-snmp-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-vfs-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-vfs-service-unit/pom.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-vfs-service-unit/pom.xml (added)
+++ servicemix/archetypes/trunk/servicemix-vfs-service-unit/pom.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,33 @@
+<?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.
+    -->
+    
+    <modelVersion>4.0.0</modelVersion>
+    
+    <parent>
+        <groupId>org.apache.servicemix</groupId>
+        <artifactId>archetypes</artifactId>
+        <version>2010.01-SNAPSHOT</version>
+    </parent>
+    
+    <groupId>org.apache.servicemix.tooling</groupId>
+    <artifactId>servicemix-vfs-service-unit</artifactId>
+    <name>Apache ServiceMix :: Archetypes :: VFS Service Unit</name>
+
+</project>
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-vfs-service-unit/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-vfs-service-unit/src/main/resources/META-INF/maven/archetype.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-vfs-service-unit/src/main/resources/META-INF/maven/archetype.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-vfs-service-unit/src/main/resources/META-INF/maven/archetype.xml (added)
+++ servicemix/archetypes/trunk/servicemix-vfs-service-unit/src/main/resources/META-INF/maven/archetype.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,23 @@
+<?xml version="1.0" encoding="UTF-8"?>
+    <!--
+
+        Licensed to the Apache Software Foundation (ASF) under one or more
+        contributor license agreements. See the NOTICE file distributed with
+        this work for additional information regarding copyright ownership.
+        The ASF licenses this file to You under the Apache License, Version
+        2.0 (the "License"); you may not use this file except in compliance
+        with the License. You may obtain a copy of the License at
+
+        http://www.apache.org/licenses/LICENSE-2.0 Unless required by
+        applicable law or agreed to in writing, software distributed under the
+        License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR
+        CONDITIONS OF ANY KIND, either express or implied. See the License for
+        the specific language governing permissions and limitations under the
+        License.
+    -->
+<archetype>
+    <id>servicemix-vfs-service-unit</id>
+    <resources>
+        <resource>src/main/resources/xbean.xml</resource>
+    </resources>
+</archetype>    
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-vfs-service-unit/src/main/resources/META-INF/maven/archetype.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-vfs-service-unit/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-vfs-service-unit/src/main/resources/archetype-resources/pom.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-vfs-service-unit/src/main/resources/archetype-resources/pom.xml (added)
+++ servicemix/archetypes/trunk/servicemix-vfs-service-unit/src/main/resources/archetype-resources/pom.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,34 @@
+<?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">
+
+    <!-- Generated by Apache ServiceMix Archetype -->
+    
+    <modelVersion>4.0.0</modelVersion>
+    
+    <groupId>${groupId}</groupId>
+    <artifactId>${artifactId}</artifactId>
+    <packaging>jbi-service-unit</packaging>
+    <version>${version}</version>
+    <name>Apache ServiceMix :: VFS Service Unit</name>
+    
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.servicemix</groupId>
+            <artifactId>servicemix-vfs</artifactId>
+            <version>@{components.version}</version>
+        </dependency>
+    </dependencies>
+    
+    <build>
+        <defaultGoal>install</defaultGoal>
+        <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>
+
+</project>
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-vfs-service-unit/src/main/resources/archetype-resources/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain

Added: servicemix/archetypes/trunk/servicemix-vfs-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: http://svn.apache.org/viewvc/servicemix/archetypes/trunk/servicemix-vfs-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=986398&view=auto
==============================================================================
--- servicemix/archetypes/trunk/servicemix-vfs-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml (added)
+++ servicemix/archetypes/trunk/servicemix-vfs-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml Tue Aug 17 17:06:18 2010
@@ -0,0 +1,36 @@
+<?xml version="1.0" encoding="UTF-8"?>
+<!-- Generated by Apache ServiceMix Archetype -->
+<beans xmlns="http://servicemix.apache.org/vfs/1.0"
+       xmlns:replaceMe="http://servicemix.apache.org/replaceMe"
+       xmlns="http://www.springframework.org/schema/beans"
+       xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+       xsi:schemaLocation="
+            http://servicemix.apache.org/vfs/1.0 http://servicemix.apache.org/schema/servicemix-vfs-@{components.version}.xsd
+            http://www.springframework.org/schema/beans http://www.springframework.org/schema/beans/spring-beans-2.0.xsd">
+            
+    <!-- BEGIN SNIPPET: vfs-poller -->
+    <vfs:poller service="replaceMe:serviceName"
+                endpoint="vfs-poller"
+                path="tgz:http://remote/file.tar.gz!/inner/directory"
+                targetService="replaceMe:targetServiceName"
+                targetEndpoint="targetEndpoint"
+                period="10000"
+                deleteFile="false"
+                recursive="true">
+        <property name="marshaler">
+            <bean class="org.apache.servicemix.components.util.BinaryFileMarshaler" />
+        </property>
+    </vfs:poller>                
+    <!-- END SNIPPET: vfs-poller -->
+    
+    <!-- BEGIN SNIPPET: vfs-sender -->
+    <vfs:sender service="replaceMe:serviceName"
+                endpoint="vfs-sender"
+                path="sftp://username:password@hostname/path">
+        <property name="marshaler">
+            <bean class="org.apache.servicemix.components.util.BinaryFileMarshaler" />
+        </property>                    
+    </vfs:sender>            
+    <!-- END SNIPPET: vfs-sender -->
+       
+</beans>
\ No newline at end of file

Propchange: servicemix/archetypes/trunk/servicemix-vfs-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
------------------------------------------------------------------------------
    svn:mime-type = text/plain