You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@servicemix.apache.org by ch...@apache.org on 2008/06/20 16:25:47 UTC

svn commit: r669908 - /servicemix/components/bindings/servicemix-http/trunk/pom.xml

Author: chirino
Date: Fri Jun 20 07:25:47 2008
New Revision: 669908

URL: http://svn.apache.org/viewvc?rev=669908&view=rev
Log:
Updating pom to work with new build strucutre

Modified:
    servicemix/components/bindings/servicemix-http/trunk/pom.xml

Modified: servicemix/components/bindings/servicemix-http/trunk/pom.xml
URL: http://svn.apache.org/viewvc/servicemix/components/bindings/servicemix-http/trunk/pom.xml?rev=669908&r1=669907&r2=669908&view=diff
==============================================================================
--- servicemix/components/bindings/servicemix-http/trunk/pom.xml (original)
+++ servicemix/components/bindings/servicemix-http/trunk/pom.xml Fri Jun 20 07:25:47 2008
@@ -1,6 +1,5 @@
 <?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
@@ -18,90 +17,60 @@
     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>bindingcomponents</artifactId>
-    <version>3.3-SNAPSHOT</version>
+    <artifactId>components-pom</artifactId>
+    <version>1.0-SNAPSHOT</version>
   </parent>
-
+  
+  <groupId>org.apache.servicemix</groupId>
   <artifactId>servicemix-http</artifactId>
+  <version>4.0-SNAPSHOT</version>
   <packaging>jbi-component</packaging>
+
   <name>ServiceMix :: HTTP</name>
   <description>HTTP Binding Component</description>
-
-  <build>
-    <plugins>
-      <plugin>
-        <groupId>org.apache.servicemix.tooling</groupId>
-        <artifactId>jbi-maven-plugin</artifactId>
-        <configuration>
-          <type>binding-component</type>
-          <bootstrap>org.apache.servicemix.http.HttpBootstrap</bootstrap>
-          <component>org.apache.servicemix.http.HttpComponent</component>
-          <serviceUnitAnalyzer>org.apache.servicemix.http.packaging.HttpServiceUnitAnalyzer</serviceUnitAnalyzer>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.xbean</groupId>
-        <artifactId>maven-xbean-plugin</artifactId>
-        <executions>
-          <execution>
-            <goals>
-              <goal>mapping</goal>
-            </goals>
-            <configuration>
-              <namespace>http://servicemix.apache.org/http/1.0</namespace>
-            </configuration>
-          </execution>
-        </executions>
-      </plugin>
-      <plugin>
-        <artifactId>maven-surefire-plugin</artifactId>
-        <configuration>
-          <workingDirectory>${basedir}</workingDirectory>
-          <includes>
-            <include>**/*Test.*</include>
-          </includes>
-          <excludes>
-            <!-- exclude abstract test cases -->
-            <exclude>**/Abstract*.*</exclude>
-            <exclude>**/HttpTxTest.*</exclude>
-            <exclude>**/HttpSecurityTest.*</exclude>
-          </excludes>
-        </configuration>
-      </plugin>
-      <plugin>
-        <groupId>org.apache.maven.plugins</groupId>
-        <artifactId>maven-compiler-plugin</artifactId>
-        <configuration>
-          <source>1.5</source>
-          <target>1.5</target>
-        </configuration>
-      </plugin>
-    </plugins>
-  </build>
   
+  <scm>
+    <connection>scm:svn:http://svn.apache.org/repos/asf/servicemix/components/bindings/servicemix-http/trunk</connection>
+    <developerConnection>scm:svn:https://svn.apache.org/repos/asf/servicemix/components/bindings/servicemix-http/trunk</developerConnection>
+    <url>http://svn.apache.org/viewcvs.cgi/servicemix/components/bindings/servicemix-http/trunk</url>
+  </scm>
+
+  <properties>
+    <previous.releases>3.1.2,3.2,3.2.1</previous.releases>
+    <!-- Have to use the 3.3-SNAPSHOT instead of 3.2.1 due to: 
+      [INFO] Compilation failure src/main/java/org/apache/servicemix/http/endpoints/RestProviderMarshaler.java:[118,48] 
+        evaluate(javax.jbi.messaging.MessageExchange,javax.jbi.messaging.NormalizedMessage) in org.apache.servicemix.expression.JAXPXPathExpression cannot be applied to       
+        (javax.jbi.messaging.MessageExchange,javax.jbi.messaging.NormalizedMessage,javax.xml.namespace.QName)
+    -->
+    <servicemix-version>3.3-SNAPSHOT</servicemix-version>
+    <servicemix-shared-version>4.0-SNAPSHOT</servicemix-shared-version>
+    <jetty-version>6.1.6</jetty-version>
+  </properties>
+
   <dependencies>
     <dependency>
       <groupId>org.apache.servicemix</groupId>
       <artifactId>servicemix-shared</artifactId>
+      <version>${servicemix-shared-version}</version>
     </dependency>
     <dependency>
       <groupId>org.apache.servicemix</groupId>
       <artifactId>servicemix-core</artifactId>
       <scope>provided</scope>
+      <version>${servicemix-version}</version>
     </dependency>
     <dependency>
       <groupId>commons-logging</groupId>
       <artifactId>commons-logging</artifactId>
-      <scope>provided</scope>
     </dependency>
+    
     <dependency>
       <groupId>commons-httpclient</groupId>
       <artifactId>commons-httpclient</artifactId>
+      <version>3.0</version>
     </dependency>
     <dependency>
       <groupId>org.mortbay.jetty</groupId>
@@ -141,20 +110,24 @@
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-servlet_2.4_spec</artifactId>
+      <version>1.1</version>
     </dependency>
     <dependency>
       <groupId>org.apache.geronimo.specs</groupId>
       <artifactId>geronimo-javamail_1.3.1_spec</artifactId>
+      <version>1.2</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.geronimo.modules</groupId>
       <artifactId>geronimo-activation</artifactId>
+      <version>2.0.1</version>
       <scope>provided</scope>
     </dependency>
     <dependency>
       <groupId>org.apache.servicemix</groupId>
       <artifactId>servicemix-components</artifactId>
+      <version>3.2.1</version>
       <scope>test</scope>
     </dependency>
     <dependency>
@@ -172,6 +145,7 @@
     <dependency>
       <groupId>log4j</groupId>
       <artifactId>log4j</artifactId>
+      <version>1.2.13</version>
       <scope>test</scope>
     </dependency>
     <dependency>
@@ -214,7 +188,48 @@
       <groupId>xstream</groupId>
       <artifactId>xstream</artifactId>
       <scope>provided</scope>
+      <version>1.1.2</version>
     </dependency>
   </dependencies>
+  
+  <build>
+    <plugins>
+      <plugin>
+        <groupId>org.apache.servicemix.tooling</groupId>
+        <artifactId>jbi-maven-plugin</artifactId>
+        <configuration>
+          <type>binding-component</type>
+          <bootstrap>org.apache.servicemix.http.HttpBootstrap</bootstrap>
+          <component>org.apache.servicemix.http.HttpComponent</component>
+          <serviceUnitAnalyzer>org.apache.servicemix.http.packaging.HttpServiceUnitAnalyzer</serviceUnitAnalyzer>
+        </configuration>
+      </plugin>
+      <plugin>
+        <groupId>org.apache.xbean</groupId>
+        <artifactId>maven-xbean-plugin</artifactId>
+        <executions>
+          <execution>
+            <goals>
+              <goal>mapping</goal>
+            </goals>
+            <configuration>
+              <namespace>http://servicemix.apache.org/http/1.0</namespace>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+      <plugin>
+        <artifactId>maven-surefire-plugin</artifactId>
+        <configuration>
+          <excludes>
+            <!-- exclude abstract test cases -->
+            <exclude>**/Abstract*.*</exclude>
+            <exclude>**/HttpTxTest.*</exclude>
+            <exclude>**/HttpSecurityTest.*</exclude>
+          </excludes>
+        </configuration>
+      </plugin>
+    </plugins>
+  </build>
 
 </project>