Return-Path: X-Original-To: apmail-celix-commits-archive@www.apache.org Delivered-To: apmail-celix-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 897E5173FE for ; Wed, 18 Feb 2015 12:49:14 +0000 (UTC) Received: (qmail 13023 invoked by uid 500); 18 Feb 2015 12:49:14 -0000 Delivered-To: apmail-celix-commits-archive@celix.apache.org Received: (qmail 12995 invoked by uid 500); 18 Feb 2015 12:49:14 -0000 Mailing-List: contact commits-help@celix.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@celix.apache.org Delivered-To: mailing list commits@celix.apache.org Received: (qmail 12986 invoked by uid 99); 18 Feb 2015 12:49:14 -0000 Received: from eris.apache.org (HELO hades.apache.org) (140.211.11.105) by apache.org (qpsmtpd/0.29) with ESMTP; Wed, 18 Feb 2015 12:49:14 +0000 Received: from hades.apache.org (localhost [127.0.0.1]) by hades.apache.org (ASF Mail Server at hades.apache.org) with ESMTP id 58C90AC0051 for ; Wed, 18 Feb 2015 12:49:14 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1660615 - /celix/trunk/remote_services/examples/deploy.cmake Date: Wed, 18 Feb 2015 12:49:14 -0000 To: commits@celix.apache.org From: abroekhuis@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20150218124914.58C90AC0051@hades.apache.org> Author: abroekhuis Date: Wed Feb 18 12:49:13 2015 New Revision: 1660615 URL: http://svn.apache.org/r1660615 Log: Added properties to the deployment to be able to run the server/client without any configuration. Modified: celix/trunk/remote_services/examples/deploy.cmake Modified: celix/trunk/remote_services/examples/deploy.cmake URL: http://svn.apache.org/viewvc/celix/trunk/remote_services/examples/deploy.cmake?rev=1660615&r1=1660614&r2=1660615&view=diff ============================================================================== --- celix/trunk/remote_services/examples/deploy.cmake (original) +++ celix/trunk/remote_services/examples/deploy.cmake Wed Feb 18 12:49:13 2015 @@ -23,9 +23,17 @@ if (RSA_EXAMPLES) deploy("remote-services-cfg" BUNDLES discovery_configured topology_manager remote_service_admin_http calculator shell shell_tui log_service log_writer ENDPOINTS org.apache.celix.calc.api.Calculator_endpoint - org.apache.celix.calc.api.Calculator2_endpoint) + org.apache.celix.calc.api.Calculator2_endpoint + PROPERTIES + RSA_PORT=8001 + DISCOVERY_CFG_POLL_ENDPOINTS=http://localhost:8082/org.apache.celix.discovery.configured + DISCOVERY_CFG_SERVER_PORT=8081) deploy("remote-services-cfg-client" BUNDLES topology_manager remote_service_admin_http shell shell_tui log_service log_writer calculator_shell discovery_configured - ENDPOINTS org.apache.celix.calc.api.Calculator_proxy org.apache.celix.calc.api.Calculator2_proxy) + ENDPOINTS org.apache.celix.calc.api.Calculator_proxy org.apache.celix.calc.api.Calculator2_proxy + PROPERTIES + RSA_PORT=8002 + DISCOVERY_CFG_POLL_ENDPOINTS=http://localhost:8081/org.apache.celix.discovery.configured + DISCOVERY_CFG_SERVER_PORT=8082) endif () endif ()