Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 4C93A200C68 for ; Wed, 3 May 2017 22:06:40 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 4B1B7160BB5; Wed, 3 May 2017 20:06:40 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 69DE2160BA1 for ; Wed, 3 May 2017 22:06:39 +0200 (CEST) Received: (qmail 44767 invoked by uid 500); 3 May 2017 20:06:38 -0000 Mailing-List: contact commits-help@activemq.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@activemq.apache.org Delivered-To: mailing list commits@activemq.apache.org Received: (qmail 44756 invoked by uid 99); 3 May 2017 20:06:38 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 03 May 2017 20:06:38 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 81B8EDF9A3; Wed, 3 May 2017 20:06:38 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: gnodet@apache.org To: commits@activemq.apache.org Message-Id: <1aed1dc30ffd4c78959b6cc6317c09a1@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: activemq-artemis git commit: [ARTEMIS-1141] Validate Karaf features using the karaf plugin Date: Wed, 3 May 2017 20:06:38 +0000 (UTC) archived-at: Wed, 03 May 2017 20:06:40 -0000 Repository: activemq-artemis Updated Branches: refs/heads/master dee143fd3 -> 9e165d173 [ARTEMIS-1141] Validate Karaf features using the karaf plugin Project: http://git-wip-us.apache.org/repos/asf/activemq-artemis/repo Commit: http://git-wip-us.apache.org/repos/asf/activemq-artemis/commit/9e165d17 Tree: http://git-wip-us.apache.org/repos/asf/activemq-artemis/tree/9e165d17 Diff: http://git-wip-us.apache.org/repos/asf/activemq-artemis/diff/9e165d17 Branch: refs/heads/master Commit: 9e165d17336f23d86dbe34c2c910abfa17cc78c4 Parents: dee143f Author: Guillaume Nodet Authored: Wed May 3 22:04:32 2017 +0200 Committer: Guillaume Nodet Committed: Wed May 3 22:06:32 2017 +0200 ---------------------------------------------------------------------- artemis-features/pom.xml | 40 +++++++++++++++++++ .../src/main/resources/features.xml | 42 ++++++++++---------- artemis-server-osgi/pom.xml | 9 +++++ 3 files changed, 70 insertions(+), 21 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/9e165d17/artemis-features/pom.xml ---------------------------------------------------------------------- diff --git a/artemis-features/pom.xml b/artemis-features/pom.xml index 55fc43e..9c8767c 100644 --- a/artemis-features/pom.xml +++ b/artemis-features/pom.xml @@ -25,6 +25,20 @@ pom ActiveMQ Artemis Features + + 4.1.1 + + + + + org.apache.karaf.features + framework + ${karaf.version} + kar + provided + + + @@ -53,6 +67,32 @@ + org.apache.karaf.tooling + karaf-maven-plugin + ${karaf.version} + + + verify + process-resources + + verify + + + + mvn:org.apache.karaf.features/framework/${karaf.version}/xml/features + mvn:org.apache.karaf.features/enterprise/${karaf.version}/xml/features + file:${project.build.directory}/classes/features.xml + + org.apache.karaf.features:framework + 1.8 + + framework + + + + + + org.codehaus.mojo build-helper-maven-plugin http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/9e165d17/artemis-features/src/main/resources/features.xml ---------------------------------------------------------------------- diff --git a/artemis-features/src/main/resources/features.xml b/artemis-features/src/main/resources/features.xml index f498c14..c6f4b42 100644 --- a/artemis-features/src/main/resources/features.xml +++ b/artemis-features/src/main/resources/features.xml @@ -19,14 +19,14 @@ xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://karaf.apache.org/xmlns/features/v1.3.0 http://karaf.apache.org/xmlns/features/v1.3.0"> - - artemis-core - artemis-amqp - artemis-stomp - artemis-mqtt - artemis-hornetq - artemis-openwire - + + artemis-core + artemis-amqp + artemis-stomp + artemis-mqtt + artemis-hornetq + artemis-openwire + mvn:io.netty/netty-common/${netty.version} @@ -45,17 +45,17 @@ mvn:org.apache.activemq/artemis-features/${pom.version}/cfg mvn:org.apache.activemq/artemis-features/${pom.version}/xml/artemis - mvn:org.apache.geronimo.specs/geronimo-jms_2.0_spec/${geronimo.jms.2.spec.version} - mvn:com.google.guava/guava/${guava.version} - mvn:io.netty/netty-codec-http/${netty.version} - mvn:commons-beanutils/commons-beanutils/${commons.beanutils.version} - mvn:commons-collections/commons-collections/${commons.collections.version} + mvn:org.apache.geronimo.specs/geronimo-jms_2.0_spec/${geronimo.jms.2.spec.version} + mvn:com.google.guava/guava/${guava.version} + mvn:io.netty/netty-codec-http/${netty.version} + mvn:commons-beanutils/commons-beanutils/${commons.beanutils.version} + mvn:commons-collections/commons-collections/${commons.collections.version} - mvn:org.jboss.logging/jboss-logging/${jboss.logging.version} - mvn:org.jgroups/jgroups/${jgroups.version} + mvn:org.jboss.logging/jboss-logging/${jboss.logging.version} + mvn:org.jgroups/jgroups/${jgroups.version} - mvn:org.apache.geronimo.specs/geronimo-json_1.0_spec/${json-p.spec.version} - mvn:org.apache.johnzon/johnzon-core/${johnzon.version} + mvn:org.apache.geronimo.specs/geronimo-json_1.0_spec/${json-p.spec.version} + mvn:org.apache.johnzon/johnzon-core/${johnzon.version} mvn:org.apache.activemq/artemis-native/${pom.version} mvn:org.apache.activemq/artemis-server-osgi/${pom.version} @@ -64,8 +64,8 @@ wrap artemis-core - wrap:mvn:org.apache.qpid/proton-j/${proton.version} - wrap:mvn:org.apache.qpid/qpid-jms-client/${qpid.jms.version} + wrap:mvn:org.apache.qpid/proton-j/${proton.version} + wrap:mvn:org.apache.qpid/qpid-jms-client/${qpid.jms.version} mvn:org.apache.activemq/artemis-amqp-protocol/${pom.version} @@ -76,7 +76,7 @@ artemis-core - mvn:io.netty/netty-codec-mqtt/${netty.version} + mvn:io.netty/netty-codec-mqtt/${netty.version} mvn:org.apache.activemq/artemis-mqtt-protocol/${pom.version} @@ -88,7 +88,7 @@ artemis-core - mvn:org.fusesource.hawtbuf/hawtbuf/1.11 + mvn:org.fusesource.hawtbuf/hawtbuf/1.11 mvn:org.apache.geronimo.specs/geronimo-j2ee-management_1.1_spec/1.0.1 mvn:org.apache.activemq/artemis-openwire-protocol/${pom.version} http://git-wip-us.apache.org/repos/asf/activemq-artemis/blob/9e165d17/artemis-server-osgi/pom.xml ---------------------------------------------------------------------- diff --git a/artemis-server-osgi/pom.xml b/artemis-server-osgi/pom.xml index 3b77e6e..194243e 100644 --- a/artemis-server-osgi/pom.xml +++ b/artemis-server-osgi/pom.xml @@ -90,6 +90,14 @@ org.jboss.logmanager jboss-logmanager true + provided + + + xalan + xalan + 2.7.2 + true + provided @@ -117,6 +125,7 @@ *;scope=compile|runtime + !org.apache.activemq.artemis.*, org.postgresql*;resolution:=optional, *