You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by gn...@apache.org on 2006/01/17 19:06:45 UTC

svn commit: r369854 - in /incubator/servicemix/trunk/servicemix-soap: maven.xml project.properties project.xml src/main/java/org/apache/servicemix/soap/Context.java src/main/java/org/apache/servicemix/soap/SoapEndpoint.java

Author: gnodet
Date: Tue Jan 17 10:06:42 2006
New Revision: 369854

URL: http://svn.apache.org/viewcvs?rev=369854&view=rev
Log:
Add maven 1 pom
Remove unneeded property definition on Context
Add copyright to SoapEndpoint 

Added:
    incubator/servicemix/trunk/servicemix-soap/maven.xml
    incubator/servicemix/trunk/servicemix-soap/project.properties
    incubator/servicemix/trunk/servicemix-soap/project.xml
Modified:
    incubator/servicemix/trunk/servicemix-soap/src/main/java/org/apache/servicemix/soap/Context.java
    incubator/servicemix/trunk/servicemix-soap/src/main/java/org/apache/servicemix/soap/SoapEndpoint.java

Added: incubator/servicemix/trunk/servicemix-soap/maven.xml
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-soap/maven.xml?rev=369854&view=auto
==============================================================================
--- incubator/servicemix/trunk/servicemix-soap/maven.xml (added)
+++ incubator/servicemix/trunk/servicemix-soap/maven.xml Tue Jan 17 10:06:42 2006
@@ -0,0 +1,27 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!--
+
+    Copyright 2005 The Apache Software Foundation
+
+    Licensed under the Apache License, Version 2.0 (the "License");
+    you may not use this file except in compliance with the License.
+    You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+
+<project default="default" xmlns:ant="jelly:ant">
+
+  <!-- redefined "build" goal from parent to create a war instead -->
+  <goal name="default" prereqs="war:install"/>
+  
+  <goal name="nightly" prereqs="clean, war:install, war:deploy"/>
+
+</project>

Added: incubator/servicemix/trunk/servicemix-soap/project.properties
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-soap/project.properties?rev=369854&view=auto
==============================================================================
--- incubator/servicemix/trunk/servicemix-soap/project.properties (added)
+++ incubator/servicemix/trunk/servicemix-soap/project.properties Tue Jan 17 10:06:42 2006
@@ -0,0 +1 @@
+

Added: incubator/servicemix/trunk/servicemix-soap/project.xml
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-soap/project.xml?rev=369854&view=auto
==============================================================================
--- incubator/servicemix/trunk/servicemix-soap/project.xml (added)
+++ incubator/servicemix/trunk/servicemix-soap/project.xml Tue Jan 17 10:06:42 2006
@@ -0,0 +1,112 @@
+<?xml version="1.0" encoding="ISO-8859-1"?>
+
+<!--
+
+    Copyright 2005 The Apache Software Foundation
+
+    Licensed under the Apache License, Version 2.0 (the "License");
+    you may not use this file except in compliance with the License.
+    You may obtain a copy of the License at
+
+       http://www.apache.org/licenses/LICENSE-2.0
+
+    Unless required by applicable law or agreed to in writing, software
+    distributed under the License is distributed on an "AS IS" BASIS,
+    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+    See the License for the specific language governing permissions and
+    limitations under the License.
+-->
+
+<!DOCTYPE project>
+<project>
+    <pomVersion>3</pomVersion>
+    <extend>${basedir}/../etc/project.xml</extend>
+
+    <name>ServiceMix :: SOAP</name>
+    <id>servicemix-soap</id>
+    <shortDescription>ServiceMix SOAP</shortDescription>
+    <description>ServiceMix SOAP</description>
+  
+    <package>org.apache.servicemix.soap</package>
+    <packageGroups>
+      <packageGroup>
+        <title>ServiceMix SOAP</title>
+        <packages>org.apache.servicemix.soap</packages>
+      </packageGroup>
+    </packageGroups>
+ 
+    <!-- ============ -->
+    <!-- Dependencies -->
+    <!-- ============ -->
+    <dependencies>
+    
+      <dependency>
+        <groupId>org.apache.servicemix</groupId>
+        <artifactId>servicemix-jbi</artifactId>
+        <version>${pom.currentVersion}</version>
+        <properties>
+          <eclipse.dependency>true</eclipse.dependency>
+        </properties>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.servicemix</groupId>
+        <artifactId>servicemix-core</artifactId>
+        <version>${pom.currentVersion}</version>
+        <properties>
+          <eclipse.dependency>true</eclipse.dependency>
+        </properties>
+      </dependency>
+      <dependency>
+        <groupId>org.apache.servicemix</groupId>
+        <artifactId>servicemix-common</artifactId>
+        <version>${pom.currentVersion}</version>
+        <properties>
+          <eclipse.dependency>true</eclipse.dependency>
+        </properties>
+      </dependency>
+      
+    <dependency>
+      <groupId>org.apache.geronimo.specs</groupId>
+      <artifactId>geronimo-activation_1.0.2_spec</artifactId>
+      <version>${geronimo_spec_activation_version}</version>
+    </dependency>
+    <dependency>
+      <groupId>commons-logging</groupId>
+      <artifactId>commons-logging</artifactId>
+      <version>${commons_logging_version}</version>
+    </dependency>
+
+    <dependency>
+      <groupId>stax</groupId>
+      <artifactId>stax-api</artifactId>
+      <version>${stax_api_version}</version>
+    </dependency>
+    <dependency>
+      <groupId>xalan</groupId>
+      <artifactId>xalan</artifactId>
+      <version>${xalan_version}</version>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.geronimo.specs</groupId>
+      <artifactId>geronimo-javamail_1.3.1_spec</artifactId>
+      <version>${geronimo_spec_javamail_version}</version>
+    </dependency>
+    <dependency>
+      <groupId>geronimo</groupId>
+      <artifactId>geronimo-activation</artifactId>
+      <version>${geronimo_version}</version>
+    </dependency>
+    <dependency>
+      <groupId>woodstox</groupId>
+      <artifactId>wstx-asl</artifactId>
+      <version>${woodstox_version}</version>
+    </dependency>
+    <dependency>
+      <groupId>stax-utils</groupId>
+      <artifactId>stax-utils</artifactId>
+      <version>${stax_utils_version}</version>
+    </dependency>
+      
+    </dependencies>  
+
+</project>

Modified: incubator/servicemix/trunk/servicemix-soap/src/main/java/org/apache/servicemix/soap/Context.java
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-soap/src/main/java/org/apache/servicemix/soap/Context.java?rev=369854&r1=369853&r2=369854&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-soap/src/main/java/org/apache/servicemix/soap/Context.java (original)
+++ incubator/servicemix/trunk/servicemix-soap/src/main/java/org/apache/servicemix/soap/Context.java Tue Jan 17 10:06:42 2006
@@ -26,7 +26,6 @@
  */
 public class Context {
 
-	public static final String EXCHANGE_MEP = "org.apache.servicemix.ExchangeMep";
 	public static final String SOAP_MESSAGE = "org.apache.servicemix.SoapMessage";
 	public static final String INTERFACE = "org.apache.servicemix.Interface";
 	public static final String OPERATION = "org.apache.servicemix.Operation";

Modified: incubator/servicemix/trunk/servicemix-soap/src/main/java/org/apache/servicemix/soap/SoapEndpoint.java
URL: http://svn.apache.org/viewcvs/incubator/servicemix/trunk/servicemix-soap/src/main/java/org/apache/servicemix/soap/SoapEndpoint.java?rev=369854&r1=369853&r2=369854&view=diff
==============================================================================
--- incubator/servicemix/trunk/servicemix-soap/src/main/java/org/apache/servicemix/soap/SoapEndpoint.java (original)
+++ incubator/servicemix/trunk/servicemix-soap/src/main/java/org/apache/servicemix/soap/SoapEndpoint.java Tue Jan 17 10:06:42 2006
@@ -1,3 +1,18 @@
+/*
+ * Copyright 2005-2006 The Apache Software Foundation.
+ *
+ * Licensed under the Apache License, Version 2.0 (the "License");
+ * you may not use this file except in compliance with the License.
+ * You may obtain a copy of the License at
+ *
+ *      http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ */
 package org.apache.servicemix.soap;
 
 import java.net.URI;
@@ -7,7 +22,5 @@
 public abstract class SoapEndpoint extends Endpoint {
 
 	public abstract URI getDefaultMep();
-	
-	
 	
 }