You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2015/03/06 08:48:38 UTC

camel git commit: CAMEL-8447 Added camel-jetty module to republish the camel-jetty8 jar into maven repo

Repository: camel
Updated Branches:
  refs/heads/master 6506c87e3 -> 5ea090650


CAMEL-8447 Added camel-jetty module to republish the camel-jetty8 jar into maven repo


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

Branch: refs/heads/master
Commit: 5ea0906503897ccbee2e14f3a83f9e8b4d5525c7
Parents: 6506c87
Author: Willem Jiang <wi...@gmail.com>
Authored: Fri Mar 6 15:47:59 2015 +0800
Committer: Willem Jiang <wi...@gmail.com>
Committed: Fri Mar 6 15:48:08 2015 +0800

----------------------------------------------------------------------
 components/camel-jetty/pom.xml | 47 +++++++++++++++++++++++++++++++++++++
 components/pom.xml             |  2 ++
 2 files changed, 49 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/5ea09065/components/camel-jetty/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-jetty/pom.xml b/components/camel-jetty/pom.xml
new file mode 100644
index 0000000..f047d43
--- /dev/null
+++ b/components/camel-jetty/pom.xml
@@ -0,0 +1,47 @@
+<?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>
+
+    <parent>
+        <groupId>org.apache.camel</groupId>
+        <artifactId>components</artifactId>
+        <version>2.15-SNAPSHOT</version>
+    </parent>
+
+    <artifactId>camel-jetty</artifactId>
+    <packaging>bundle</packaging>
+    <name>Camel :: Jetty</name>
+    <description>Camel Jetty Component</description>
+
+    <properties>
+        <camel.osgi.import.before.defaults>
+            javax.servlet.*;version="${servlet-version-range}"
+        </camel.osgi.import.before.defaults>
+        <camel.osgi.export.pkg>org.apache.camel.component.jetty8</camel.osgi.export.pkg>
+        <camel.osgi.export.service>org.apache.camel.spi.ComponentResolver;component=jetty</camel.osgi.export.service>
+    </properties>
+
+    <dependencies>
+        <dependency>
+            <groupId>org.apache.camel</groupId>
+            <artifactId>camel-jetty8</artifactId>
+        </dependency>
+    </dependencies>
+
+</project>

http://git-wip-us.apache.org/repos/asf/camel/blob/5ea09065/components/pom.xml
----------------------------------------------------------------------
diff --git a/components/pom.xml b/components/pom.xml
index 29a54ea..7065ff4 100644
--- a/components/pom.xml
+++ b/components/pom.xml
@@ -50,6 +50,8 @@
     <module>camel-jetty-common</module>
     <module>camel-jetty8</module>
     <module>camel-jetty9</module>
+    <!-- camel-jetty is used to republish the camel-jetty8 -->
+    <module>camel-jetty</module>
     <module>camel-cxf</module>
     <module>camel-cxf-transport</module>
     <module>camel-web-standalone</module>