Repository: camel
Updated Branches:
  refs/heads/master a7a97bfe7 -> dec7238a6


Fixed pom in camel-azure


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/dec7238a
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/dec7238a
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/dec7238a

Branch: refs/heads/master
Commit: dec7238a6bb1f7f0845a7b1b517910156f67836b
Parents: a7a97bf
Author: Claus Ibsen <davscl...@apache.org>
Authored: Thu Sep 28 09:03:01 2017 +0200
Committer: Claus Ibsen <davscl...@apache.org>
Committed: Thu Sep 28 09:03:01 2017 +0200

----------------------------------------------------------------------
 components/camel-azure/pom.xml | 83 +++++++++++++++++++------------------
 1 file changed, 43 insertions(+), 40 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/dec7238a/components/camel-azure/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-azure/pom.xml b/components/camel-azure/pom.xml
index ef0fa0b..7502bd2 100644
--- a/components/camel-azure/pom.xml
+++ b/components/camel-azure/pom.xml
@@ -17,49 +17,52 @@
     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>
+<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>
 
-    <parent>
-        <groupId>org.apache.camel</groupId>
-        <artifactId>components</artifactId>
-        <version>2.20.0-SNAPSHOT</version>
-    </parent>
+  <parent>
+    <groupId>org.apache.camel</groupId>
+    <artifactId>components</artifactId>
+    <version>2.20.0-SNAPSHOT</version>
+  </parent>
 
-    <artifactId>camel-azure</artifactId>
-    <packaging>jar</packaging>
+  <artifactId>camel-azure</artifactId>
+  <packaging>jar</packaging>
 
-    <name>Camel :: Azure</name>
-    <description>Camel Microsoft Azure Components</description>
+  <name>Camel :: Azure</name>
+  <description>Camel Microsoft Azure Components</description>
 
-    <properties>
-        <azure-storage-java-sdk-version>5.0.0</azure-storage-java-sdk-version>
-        
<camel.osgi.export.pkg>org.apache.camel.component.azure.*</camel.osgi.export.pkg>
-        <camel.osgi.export.service>
-        </camel.osgi.export.service>
-    </properties>
+  <properties>
+    
<camel.osgi.export.pkg>org.apache.camel.component.azure.*</camel.osgi.export.pkg>
+    <camel.osgi.export.service>
+      org.apache.camel.spi.ComponentResolver;component=azure-blob,
+      org.apache.camel.spi.ComponentResolver;component=azure-queue
+    </camel.osgi.export.service>
+  </properties>
+
+  <dependencies>
+    <dependency>
+      <groupId>org.apache.camel</groupId>
+      <artifactId>camel-core</artifactId>
+    </dependency>
+    <dependency>
+      <groupId>com.microsoft.azure</groupId>
+      <artifactId>azure-storage</artifactId>
+      <version>${azure-storage-java-sdk-version}</version>
+    </dependency>
+
+    <!-- for testing -->
+    <dependency>
+      <groupId>junit</groupId>
+      <artifactId>junit</artifactId>
+      <scope>test</scope>
+    </dependency>
+    <dependency>
+      <groupId>org.apache.camel</groupId>
+      <artifactId>camel-test-spring</artifactId>
+      <scope>test</scope>
+    </dependency>
+  </dependencies>
 
-    <dependencies>
-        <dependency>
-            <groupId>org.apache.camel</groupId>
-            <artifactId>camel-core</artifactId>
-        </dependency>
-        <dependency>
-            <groupId>com.microsoft.azure</groupId>
-            <artifactId>azure-storage</artifactId>
-            <version>${azure-storage-java-sdk-version}</version>
-        </dependency>
-        
-        <!-- for testing -->
-        <dependency>
-            <groupId>junit</groupId>
-            <artifactId>junit</artifactId>
-            <scope>test</scope>
-        </dependency>
-        <dependency>
-            <groupId>org.apache.camel</groupId>
-            <artifactId>camel-test-spring</artifactId>
-            <scope>test</scope>
-        </dependency>
-     </dependencies>
 </project>

Reply via email to