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 2016/07/30 11:00:41 UTC

camel git commit: Align pom.xml like the others

Repository: camel
Updated Branches:
  refs/heads/master 1f7f98f50 -> 136db7f25


Align pom.xml like the others


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

Branch: refs/heads/master
Commit: 136db7f25344091783d4606db1a667f36a2b839f
Parents: 1f7f98f
Author: Claus Ibsen <da...@apache.org>
Authored: Sat Jul 30 12:56:50 2016 +0200
Committer: Claus Ibsen <da...@apache.org>
Committed: Sat Jul 30 13:00:30 2016 +0200

----------------------------------------------------------------------
 components/camel-etcd/pom.xml | 32 ++++++++++++++------------------
 1 file changed, 14 insertions(+), 18 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/136db7f2/components/camel-etcd/pom.xml
----------------------------------------------------------------------
diff --git a/components/camel-etcd/pom.xml b/components/camel-etcd/pom.xml
index 4e307b9..c5154c8 100644
--- a/components/camel-etcd/pom.xml
+++ b/components/camel-etcd/pom.xml
@@ -15,7 +15,8 @@
   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>
 
@@ -31,31 +32,27 @@
   <description>Camel Etcd support</description>
 
   <properties>
-    <version.etcd4j>2.10.0</version.etcd4j>
-
-    <schemeName>etcd</schemeName>
-    <componentName>Etcd</componentName>
-    <componentPackage>org.apache.camel.component.etcd</componentPackage>
-
-    <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
-    <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
+    <camel.osgi.export.pkg>org.apache.camel.component.etcd.*</camel.osgi.export.pkg>
+    <camel.osgi.export.service>
+      org.apache.camel.spi.ComponentResolver;component=etc
+    </camel.osgi.export.service>
+  </properties>
 
-    <camel.osgi.export.pkg>${componentPackage}</camel.osgi.export.pkg>
+  <dependencies>
 
-  </properties>
+    <dependency>
+      <groupId>org.apache.camel</groupId>
+      <artifactId>camel-core</artifactId>
+      <version>${project.version}</version>
+    </dependency>
 
-<dependencies>
+    <!-- etcd -->
     <dependency>
       <groupId>org.mousio</groupId>
       <artifactId>etcd4j</artifactId>
       <version>${etcd4j-version}</version>
     </dependency>
     <dependency>
-      <groupId>org.apache.camel</groupId>
-      <artifactId>camel-core</artifactId>
-      <version>${project.version}</version>
-    </dependency>
-    <dependency>
       <groupId>org.apache.commons</groupId>
       <artifactId>commons-lang3</artifactId>
       <version>${commons-lang3-version}</version>
@@ -101,7 +98,6 @@
 
   </dependencies>
 
-
   <profiles>
     <profile>
       <id>etcd-skip-tests</id>