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 1A991200CF0 for ; Thu, 7 Sep 2017 16:33:14 +0200 (CEST) Received: by cust-asf.ponee.io (Postfix) id 187F81613E6; Thu, 7 Sep 2017 14:33:14 +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 5D50F160D30 for ; Thu, 7 Sep 2017 16:33:13 +0200 (CEST) Received: (qmail 32145 invoked by uid 500); 7 Sep 2017 14:33:11 -0000 Mailing-List: contact issues-help@karaf.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@karaf.apache.org Delivered-To: mailing list issues@karaf.apache.org Received: (qmail 32134 invoked by uid 99); 7 Sep 2017 14:33:11 -0000 Received: from pnap-us-west-generic-nat.apache.org (HELO spamd1-us-west.apache.org) (209.188.14.142) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 07 Sep 2017 14:33:11 +0000 Received: from localhost (localhost [127.0.0.1]) by spamd1-us-west.apache.org (ASF Mail Server at spamd1-us-west.apache.org) with ESMTP id AC011C4C4E for ; Thu, 7 Sep 2017 14:33:10 +0000 (UTC) X-Virus-Scanned: Debian amavisd-new at spamd1-us-west.apache.org X-Spam-Flag: NO X-Spam-Score: -100.001 X-Spam-Level: X-Spam-Status: No, score=-100.001 tagged_above=-999 required=6.31 tests=[RP_MATCHES_RCVD=-0.001, SPF_PASS=-0.001, URIBL_BLOCKED=0.001, USER_IN_WHITELIST=-100] autolearn=disabled Received: from mx1-lw-us.apache.org ([10.40.0.8]) by localhost (spamd1-us-west.apache.org [10.40.0.7]) (amavisd-new, port 10024) with ESMTP id 47I9jgbLen_b for ; Thu, 7 Sep 2017 14:33:05 +0000 (UTC) Received: from mailrelay1-us-west.apache.org (mailrelay1-us-west.apache.org [209.188.14.139]) by mx1-lw-us.apache.org (ASF Mail Server at mx1-lw-us.apache.org) with ESMTP id AF8B761267 for ; Thu, 7 Sep 2017 14:33:05 +0000 (UTC) Received: from jira-lw-us.apache.org (unknown [207.244.88.139]) by mailrelay1-us-west.apache.org (ASF Mail Server at mailrelay1-us-west.apache.org) with ESMTP id 7C26CE00C7 for ; Thu, 7 Sep 2017 14:33:04 +0000 (UTC) Received: from jira-lw-us.apache.org (localhost [127.0.0.1]) by jira-lw-us.apache.org (ASF Mail Server at jira-lw-us.apache.org) with ESMTP id A968A2415B for ; Thu, 7 Sep 2017 14:33:01 +0000 (UTC) Date: Thu, 7 Sep 2017 14:33:01 +0000 (UTC) From: "Steinar Bang (JIRA)" To: issues@karaf.apache.org Message-ID: In-Reply-To: References: Subject: [jira] [Created] (KARAF-5350) Get auto update functionality like "bundle:watch *" on snapshot artifacts from remote repositories MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 archived-at: Thu, 07 Sep 2017 14:33:14 -0000 Steinar Bang created KARAF-5350: ----------------------------------- Summary: Get auto update functionality like "bundle:watch *" on snapshot artifacts from remote repositories Key: KARAF-5350 URL: https://issues.apache.org/jira/browse/KARAF-5350 Project: Karaf Issue Type: Improvement Environment: I now have a continous deployment pipeline for [my project|https://github.com/steinarb/ukelonn] almost automated: # All changes I would like deployed, I merge to master and then push master to github # New pushes on master triggers a build on travis-ci # A successful build on travis-ci results in a new snapshot being deployed to a maven repository accessible via HTTP ## The bundles that make up my application have been installed from snapshots in the maven repository, like so (karaf consolle commands): {noformat} config:edit org.ops4j.pax.url.mvn config:property-append org.ops4j.pax.url.mvn.repositories ", https://maven.bang.priv.no/repository/@snapshots, http://maven.vaadin.com/vaadin-addons" config:property-set org.ops4j.pax.url.mvn.globalUpdatePolicy always config:update feature:repo-add mvn:no.priv.bang.ukelonn/ukelonn.karaf/LATEST/xml/features feature:install ukelonn-db-postgresql feature:install ukelonn {noformat} # The final step I have to do during a deployment, is to log in with ssh to the karaf console and give "bundle:update" on each bundle {noformat} bundle:update no.priv.bang.ukelonn.api bundle:update no.priv.bang.ukelonn.db.liquibase bundle:update no.priv.bang.ukelonn.db.postgresql bundle:update no.priv.bang.ukelonn {noformat} It is the final step I would like to have automated, so that new snapshots deployed to the remote repository is automatically picked up by karaf. Reporter: Steinar Bang -- This message was sent by Atlassian JIRA (v6.4.14#64029)