You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2012/11/11 13:41:41 UTC

svn commit: r1407960 - in /camel/trunk: components/camel-xmlrpc/pom.xml components/pom.xml parent/pom.xml

Author: davsclaus
Date: Sun Nov 11 12:41:38 2012
New Revision: 1407960

URL: http://svn.apache.org/viewvc?rev=1407960&view=rev
Log:
Fixed assembly with the new component

Modified:
    camel/trunk/components/camel-xmlrpc/pom.xml
    camel/trunk/components/pom.xml
    camel/trunk/parent/pom.xml

Modified: camel/trunk/components/camel-xmlrpc/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/components/camel-xmlrpc/pom.xml?rev=1407960&r1=1407959&r2=1407960&view=diff
==============================================================================
--- camel/trunk/components/camel-xmlrpc/pom.xml (original)
+++ camel/trunk/components/camel-xmlrpc/pom.xml Sun Nov 11 12:41:38 2012
@@ -1,4 +1,20 @@
 <?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>
@@ -9,44 +25,36 @@
     <version>2.11-SNAPSHOT</version>
   </parent>
 
-  <groupId>org.apache.camel.component</groupId>
   <artifactId>camel-xmlrpc</artifactId>
   <packaging>bundle</packaging>
-   <name>Camel :: XML RPC</name>
-   <description>Camel XML RPC support</description>
-
-   <properties>
-       <camel.osgi.export.pkg>org.apache.camel.component.xmlrpc.*</camel.osgi.export.pkg>
-       <xmlrpc.version>3.1.3</xmlrpc.version>
-   </properties>
+  <name>Camel :: XML RPC</name>
+  <description>Camel XML RPC support</description>
 
+  <properties>
+    <camel.osgi.export.pkg>org.apache.camel.component.xmlrpc.*</camel.osgi.export.pkg>
+  </properties>
 
   <dependencies>
     <dependency>
       <groupId>org.apache.camel</groupId>
       <artifactId>camel-core</artifactId>
     </dependency>
-    
+
     <dependency>
-	  <groupId>org.apache.xmlrpc</groupId>
-	  <artifactId>xmlrpc-client</artifactId>
-	  <version>${xmlrpc.version}</version>
+      <groupId>org.apache.xmlrpc</groupId>
+      <artifactId>xmlrpc-client</artifactId>
+      <version>${xmlrpc-version}</version>
     </dependency>
 
     <!-- logging -->
     <dependency>
       <groupId>org.slf4j</groupId>
-      <artifactId>slf4j-api</artifactId>
-    </dependency>
-    <dependency>
-      <groupId>org.slf4j</groupId>
       <artifactId>slf4j-log4j12</artifactId>
       <scope>test</scope>
     </dependency>
     <dependency>
       <groupId>log4j</groupId>
       <artifactId>log4j</artifactId>
-      <version>1.2.17</version>
       <scope>test</scope>
     </dependency>
 

Modified: camel/trunk/components/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/components/pom.xml?rev=1407960&r1=1407959&r2=1407960&view=diff
==============================================================================
--- camel/trunk/components/pom.xml (original)
+++ camel/trunk/components/pom.xml Sun Nov 11 12:41:38 2012
@@ -14,7 +14,8 @@
   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">
+-->
+<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>
 

Modified: camel/trunk/parent/pom.xml
URL: http://svn.apache.org/viewvc/camel/trunk/parent/pom.xml?rev=1407960&r1=1407959&r2=1407960&view=diff
==============================================================================
--- camel/trunk/parent/pom.xml (original)
+++ camel/trunk/parent/pom.xml Sun Nov 11 12:41:38 2012
@@ -345,6 +345,7 @@
     <xmlbeans-bundle-version>2.5.0_2</xmlbeans-bundle-version>
     <xmlbeans-version>2.5.0</xmlbeans-version>
     <xmlresolver-bundle-version>1.2_5</xmlresolver-bundle-version>
+    <xmlrpc-version>3.1.3</xmlrpc-version>
     <xmlschema-version>2.0</xmlschema-version>
     <xmlsec-version>1.5.1</xmlsec-version>
     <xmlunit-version>1.3</xmlunit-version>