You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ff...@apache.org on 2007/09/13 04:03:59 UTC

svn commit: r575141 - in /incubator/servicemix/trunk: archetypes/ archetypes/servicemix-archetypes-itests/ archetypes/servicemix-archetypes-itests/src/test/java/org/apache/servicemix/tooling/ archetypes/servicemix-cxf-bc-service-unit/ archetypes/servic...

Author: ffang
Date: Wed Sep 12 19:03:57 2007
New Revision: 575141

URL: http://svn.apache.org/viewvc?rev=575141&view=rev
Log:
add archetypes for servicemix-cxf-bc and servicemix-cxf-se

Added:
    incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/src/test/java/org/apache/servicemix/tooling/CxfBCServiceUnitTest.java   (with props)
    incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/src/test/java/org/apache/servicemix/tooling/CxfSEServiceUnitTest.java   (with props)
    incubator/servicemix/trunk/archetypes/servicemix-cxf-bc-service-unit/
    incubator/servicemix/trunk/archetypes/servicemix-cxf-bc-service-unit/pom.xml   (with props)
    incubator/servicemix/trunk/archetypes/servicemix-cxf-bc-service-unit/src/
    incubator/servicemix/trunk/archetypes/servicemix-cxf-bc-service-unit/src/main/
    incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/
    incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/pom.xml   (with props)
    incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/
    incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/
    incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/
    incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/META-INF/
    incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/META-INF/maven/
    incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/META-INF/maven/archetype.xml   (with props)
    incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/
    incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/pom.xml   (with props)
    incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/
    incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/
    incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/java/
    incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/java/ExampleService.java   (with props)
    incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/resources/
    incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml   (with props)
Modified:
    incubator/servicemix/trunk/archetypes/pom.xml
    incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/pom.xml
    incubator/servicemix/trunk/distributions/apache-servicemix/src/main/release/bin/smx-arch
    incubator/servicemix/trunk/distributions/apache-servicemix/src/main/release/bin/smx-arch.bat

Modified: incubator/servicemix/trunk/archetypes/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/pom.xml?rev=575141&r1=575140&r2=575141&view=diff
==============================================================================
--- incubator/servicemix/trunk/archetypes/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/pom.xml Wed Sep 12 19:03:57 2007
@@ -57,6 +57,8 @@
         <module>servicemix-bean-service-unit</module>
         <module>servicemix-drools-service-unit</module>
         <module>servicemix-archetypes-itests</module>
+        <module>servicemix-cxf-bc-service-unit</module>
+        <module>servicemix-cxf-se-service-unit</module>
     </modules>
 
     <build>

Modified: incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/pom.xml?rev=575141&r1=575140&r2=575141&view=diff
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/pom.xml (original)
+++ incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/pom.xml Wed Sep 12 19:03:57 2007
@@ -151,6 +151,16 @@
       <artifactId>servicemix-camel-service-unit</artifactId>
       <version>${servicemix-version}</version>
     </dependency>
+    <dependency>
+      <groupId>org.apache.servicemix.tooling</groupId>
+      <artifactId>servicemix-cxf-se-service-unit</artifactId>
+      <version>${servicemix-version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.servicemix.tooling</groupId>
+      <artifactId>servicemix-cxf-bc-service-unit</artifactId>
+      <version>${servicemix-version}</version>
+    </dependency>
   </dependencies>
   
   <build>

Added: incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/src/test/java/org/apache/servicemix/tooling/CxfBCServiceUnitTest.java
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/src/test/java/org/apache/servicemix/tooling/CxfBCServiceUnitTest.java?rev=575141&view=auto
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/src/test/java/org/apache/servicemix/tooling/CxfBCServiceUnitTest.java (added)
+++ incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/src/test/java/org/apache/servicemix/tooling/CxfBCServiceUnitTest.java Wed Sep 12 19:03:57 2007
@@ -0,0 +1,25 @@
+/*
+ * 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.
+ */
+package org.apache.servicemix.tooling;
+
+public class CxfBCServiceUnitTest extends AbstractArchetypeTest {
+
+    public void testCxfBCServiceUnit() throws Exception {
+        testServiceMixArchetype("cxf-bc-service-unit");
+    }
+
+}

Propchange: incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/src/test/java/org/apache/servicemix/tooling/CxfBCServiceUnitTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/src/test/java/org/apache/servicemix/tooling/CxfBCServiceUnitTest.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/src/test/java/org/apache/servicemix/tooling/CxfSEServiceUnitTest.java
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/src/test/java/org/apache/servicemix/tooling/CxfSEServiceUnitTest.java?rev=575141&view=auto
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/src/test/java/org/apache/servicemix/tooling/CxfSEServiceUnitTest.java (added)
+++ incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/src/test/java/org/apache/servicemix/tooling/CxfSEServiceUnitTest.java Wed Sep 12 19:03:57 2007
@@ -0,0 +1,25 @@
+/*
+ * 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.
+ */
+package org.apache.servicemix.tooling;
+
+public class CxfSEServiceUnitTest extends AbstractArchetypeTest {
+
+    public void testCxfSEServiceUnit() throws Exception {
+        testServiceMixArchetype("cxf-se-service-unit");
+    }
+
+}

Propchange: incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/src/test/java/org/apache/servicemix/tooling/CxfSEServiceUnitTest.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/servicemix/trunk/archetypes/servicemix-archetypes-itests/src/test/java/org/apache/servicemix/tooling/CxfSEServiceUnitTest.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/servicemix/trunk/archetypes/servicemix-cxf-bc-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-cxf-bc-service-unit/pom.xml?rev=575141&view=auto
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-cxf-bc-service-unit/pom.xml (added)
+++ incubator/servicemix/trunk/archetypes/servicemix-cxf-bc-service-unit/pom.xml Wed Sep 12 19:03:57 2007
@@ -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/maven-v4_0_0.xsd">
+
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.servicemix</groupId>
+    <artifactId>archetypes</artifactId>
+    <version>3.2-incubating-SNAPSHOT</version>
+  </parent>
+
+  <groupId>org.apache.servicemix.tooling</groupId>
+  <artifactId>servicemix-cxf-bc-service-unit</artifactId>
+  <name>ServiceMix :: Archetypes :: CxfBCServiceUnit</name>
+
+</project>

Propchange: incubator/servicemix/trunk/archetypes/servicemix-cxf-bc-service-unit/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/servicemix/trunk/archetypes/servicemix-cxf-bc-service-unit/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/servicemix/trunk/archetypes/servicemix-cxf-bc-service-unit/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/pom.xml?rev=575141&view=auto
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/pom.xml (added)
+++ incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/pom.xml Wed Sep 12 19:03:57 2007
@@ -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/maven-v4_0_0.xsd">
+
+<!--
+
+    Licensed to the Apache Software Foundation (ASF) under one or more
+    contributor license agreements.  See the NOTICE file distributed with
+    this work for additional information regarding copyright ownership.
+    The ASF licenses this file to You under the Apache License, Version 2.0
+    (the "License"); you may not use this file except in compliance with
+    the License.  You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+
+  <modelVersion>4.0.0</modelVersion>
+
+  <parent>
+    <groupId>org.apache.servicemix</groupId>
+    <artifactId>archetypes</artifactId>
+    <version>3.2-incubating-SNAPSHOT</version>
+  </parent>
+
+  <groupId>org.apache.servicemix.tooling</groupId>
+  <artifactId>servicemix-cxf-se-service-unit</artifactId>
+  <name>ServiceMix :: Archetypes :: CxfSEServiceUnit</name>
+
+</project>

Propchange: incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Propchange: incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/pom.xml
------------------------------------------------------------------------------
    svn:mime-type = text/xml

Added: incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/META-INF/maven/archetype.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/META-INF/maven/archetype.xml?rev=575141&view=auto
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/META-INF/maven/archetype.xml (added)
+++ incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/META-INF/maven/archetype.xml Wed Sep 12 19:03:57 2007
@@ -0,0 +1,28 @@
+<?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-cxf-se-service-unit</id>
+  <sources>
+    <source>src/main/java/ExampleService.java</source>
+  </sources>
+  <resources>
+    <resource>src/main/resources/xbean.xml</resource>   
+  </resources>  
+</archetype>

Propchange: incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/META-INF/maven/archetype.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/META-INF/maven/archetype.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

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

Added: incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/pom.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/pom.xml?rev=575141&view=auto
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/pom.xml (added)
+++ incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/pom.xml Wed Sep 12 19:03:57 2007
@@ -0,0 +1,74 @@
+<?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.
+
+-->
+<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
+  xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
+  <modelVersion>4.0.0</modelVersion>
+  <groupId>${groupId}</groupId>
+  <artifactId>${artifactId}</artifactId>
+  <packaging>jbi-service-unit</packaging>
+  <version>${version}</version>
+  <name>A custom project</name>
+  <url>http://www.myorganization.org</url>
+  @{repositories}
+  <properties>
+    <servicemix-version>@{servicemix-version}</servicemix-version>
+  </properties>
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.servicemix</groupId>
+      <artifactId>servicemix-cxf-se</artifactId>
+      <version>${servicemix-version}</version>
+    </dependency>
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <version>3.8.1</version>
+      <scope>test</scope>
+  </dependency>
+  </dependencies>
+  <build>
+    <resources>
+      <resource>
+        <directory>src/main/resources</directory>
+        <includes>
+          <include>**/*</include>
+        </includes>
+      </resource>
+    </resources>
+    <plugins>
+      <plugin>
+        <artifactId>maven-compiler-plugin</artifactId>
+        <configuration>
+          <source>1.5</source>
+          <target>1.5</target>
+        </configuration>
+      </plugin>
+      <plugin>
+      <groupId>org.apache.servicemix.tooling</groupId>
+        <artifactId>jbi-maven-plugin</artifactId>
+        <version>${servicemix-version}</version>
+        <extensions>true</extensions>
+        <configuration>
+          <type>service-unit</type>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
+</project>

Propchange: incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/pom.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/pom.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

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

Added: incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/java/ExampleService.java
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/java/ExampleService.java?rev=575141&view=auto
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/java/ExampleService.java (added)
+++ incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/java/ExampleService.java Wed Sep 12 19:03:57 2007
@@ -0,0 +1,29 @@
+/*
+ * 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.
+ */
+package ${packageName};
+
+import javax.jws.WebMethod;
+import javax.jws.WebService;
+
+@WebService(name = "ExampleService", targetNamespace = "http://example.com/exampleService")
+public class ExampleService {
+
+	@WebMethod
+	public String sayHello(String name) {
+		return "Hello "+name;
+	}
+}

Propchange: incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/java/ExampleService.java
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/java/ExampleService.java
------------------------------------------------------------------------------
    svn:keywords = Rev Date

Added: incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml?rev=575141&view=auto
==============================================================================
--- incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml (added)
+++ incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml Wed Sep 12 19:03:57 2007
@@ -0,0 +1,28 @@
+<?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.
+
+-->
+<beans xmlns:cxfse="http://servicemix.apache.org/cxfse/1.0">
+
+    <cxfse:endpoint>
+        <cxfse:pojo>
+          <bean class="${packageName}.ExampleService" />
+        </cxfse:pojo>
+    </cxfse:endpoint>
+
+</beans>

Propchange: incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
------------------------------------------------------------------------------
    svn:eol-style = native

Propchange: incubator/servicemix/trunk/archetypes/servicemix-cxf-se-service-unit/src/main/resources/archetype-resources/src/main/resources/xbean.xml
------------------------------------------------------------------------------
    svn:keywords = Rev Date

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

Modified: incubator/servicemix/trunk/distributions/apache-servicemix/src/main/release/bin/smx-arch
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/distributions/apache-servicemix/src/main/release/bin/smx-arch?rev=575141&r1=575140&r2=575141&view=diff
==============================================================================
--- incubator/servicemix/trunk/distributions/apache-servicemix/src/main/release/bin/smx-arch (original)
+++ incubator/servicemix/trunk/distributions/apache-servicemix/src/main/release/bin/smx-arch Wed Sep 12 19:03:57 2007
@@ -79,6 +79,7 @@
   echo "                    jsr181-annotated, jsr181-wsdl-first,"
   echo "                    saxon-xquery, saxon-xslt,"
   echo "                    eip, lwcontainer, bean, ode, camel"
+  echo "		    cxf-se, cxf-bc"
   echo "Optional arguments:"
   echo "  -DgroupId=xxxx"
   echo "  -DartifactId=xxxx"

Modified: incubator/servicemix/trunk/distributions/apache-servicemix/src/main/release/bin/smx-arch.bat
URL: http://svn.apache.org/viewvc/incubator/servicemix/trunk/distributions/apache-servicemix/src/main/release/bin/smx-arch.bat?rev=575141&r1=575140&r2=575141&view=diff
==============================================================================
--- incubator/servicemix/trunk/distributions/apache-servicemix/src/main/release/bin/smx-arch.bat (original)
+++ incubator/servicemix/trunk/distributions/apache-servicemix/src/main/release/bin/smx-arch.bat Wed Sep 12 19:03:57 2007
@@ -50,6 +50,7 @@
 echo                     jsr181-annotated, jsr181-wsdl-first,
 echo                     saxon-xquery, saxon-xslt,
 echo                     eip, lwcontainer, bean, ode, camel
+echo			 cxf-se, cxf-bc
 echo Optional arguments:
 echo   -DgroupId=xxxx
 echo   -DartifactId=xxxx