aboutsummaryrefslogtreecommitdiffstats
path: root/web-start
diff options
context:
space:
mode:
authorDaniel Pocock <daniel@pocock.pro>2014-07-10 15:44:20 +0200
committerDaniel Pocock <daniel@pocock.pro>2014-08-13 13:51:27 +0200
commite8d71b740d03c29150dbc17480d8d3a6841f9cc9 (patch)
tree13cc5389fe778dd492860236bf9701fdc39b529c /web-start
parent027044dbd1f66342093760cac174470bd504eb44 (diff)
downloadjitsi-e8d71b740d03c29150dbc17480d8d3a6841f9cc9.zip
jitsi-e8d71b740d03c29150dbc17480d8d3a6841f9cc9.tar.gz
jitsi-e8d71b740d03c29150dbc17480d8d3a6841f9cc9.tar.bz2
Add support for a chained main class, for running a second app in the same JVM
Diffstat (limited to 'web-start')
-rw-r--r--web-start/client.jnlp_template10
1 files changed, 10 insertions, 0 deletions
diff --git a/web-start/client.jnlp_template b/web-start/client.jnlp_template
index 58079dd..b58519f 100644
--- a/web-start/client.jnlp_template
+++ b/web-start/client.jnlp_template
@@ -83,6 +83,11 @@
<resources>
<j2se version="1.6+" href="http://java.sun.com/products/autodl/j2se"/>
<property name="net.java.sip.communicator.SC_JWS_BASEDIR" value="@URL@"/>
+ <!-- to run an additional application in the same JVM,
+ declare the main class and any arguments here and
+ add the JARs to the list below. -->
+ <!-- <property name="chain.main.class" value="com.example.MyApp"/> -->
+ <!-- <property name="chain.main.args" value="arg1 arg2"/> -->
<!-- INTERNAL_COMMENT
Use compressed Jars if available -->
<property name="jnlp.packEnabled" value="@PACKENABLED@"/>
@@ -95,6 +100,11 @@
<jar href="lib/bundle/log4j.jar" />
<jar href="lib/bundle/commons-logging.jar" />
@COMMON@
+
+ <!-- here, add any other JARs that are needed for
+ a chained main class or any other purpose -->
+ <!-- <jar href="com.example.foo.jar" /> -->
+
</resources>
<application-desc main-class="net.java.sip.communicator.launcher.SIPCommunicatorJWS"/>