You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@activemq.apache.org by ch...@apache.org on 2013/12/11 15:34:01 UTC

git commit: pass along the ssl system properties if they are defined on the command line for the swissarmy example

Updated Branches:
  refs/heads/trunk 6258ce176 -> 0b581104c


pass along the ssl system properties if they are defined on the command line for the swissarmy example


Project: http://git-wip-us.apache.org/repos/asf/activemq/repo
Commit: http://git-wip-us.apache.org/repos/asf/activemq/commit/0b581104
Tree: http://git-wip-us.apache.org/repos/asf/activemq/tree/0b581104
Diff: http://git-wip-us.apache.org/repos/asf/activemq/diff/0b581104

Branch: refs/heads/trunk
Commit: 0b581104c71c28006f482e4e3557e2c66bdf1f2d
Parents: 6258ce1
Author: Hiram Chirino <hi...@hiramchirino.com>
Authored: Wed Dec 11 09:33:50 2013 -0500
Committer: Hiram Chirino <hi...@hiramchirino.com>
Committed: Wed Dec 11 09:34:03 2013 -0500

----------------------------------------------------------------------
 assembly/src/release/examples/openwire/swissarmy/build.xml | 6 ++++++
 1 file changed, 6 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/activemq/blob/0b581104/assembly/src/release/examples/openwire/swissarmy/build.xml
----------------------------------------------------------------------
diff --git a/assembly/src/release/examples/openwire/swissarmy/build.xml b/assembly/src/release/examples/openwire/swissarmy/build.xml
index f2aba5d..e5657eb 100755
--- a/assembly/src/release/examples/openwire/swissarmy/build.xml
+++ b/assembly/src/release/examples/openwire/swissarmy/build.xml
@@ -214,6 +214,9 @@
             <classpath refid="javac.classpath" />
             <jvmarg value="-server" />
             <sysproperty key="activemq.home" value="${activemq.home}"/>
+            <sysproperty key="javax.net.ssl.keyStore" value="${javax.net.ssl.keyStore}"/>
+            <sysproperty key="javax.net.ssl.trustStore" value="${javax.net.ssl.trustStore}"/>
+            <sysproperty key="javax.net.ssl.keyStorePassword" value="${javax.net.ssl.keyStorePassword}"/>
             <arg value="--url=${url}" />
             <arg value="--topic=${topic}" />
             <arg value="--subject=${subject}" />
@@ -239,6 +242,9 @@
             <classpath refid="javac.classpath" />
             <jvmarg value="-server" />
             <sysproperty key="activemq.home" value="${activemq.home}"/>
+            <sysproperty key="javax.net.ssl.keyStore" value="${javax.net.ssl.keyStore}"/>
+            <sysproperty key="javax.net.ssl.trustStore" value="${javax.net.ssl.trustStore}"/>
+            <sysproperty key="javax.net.ssl.keyStorePassword" value="${javax.net.ssl.keyStorePassword}"/>
             <arg value="--url=${url}" />
             <arg value="--topic=${topic}" />
             <arg value="--subject=${subject}" />