23 lines
789 B
Batchfile
23 lines
789 B
Batchfile
@echo off
|
|
::
|
|
:: Copyright (C) 2017-2023 Institute of Communication and Computer Systems (imu.iccs.gr)
|
|
::
|
|
:: This Source Code Form is subject to the terms of the Mozilla Public License, v2.0, unless
|
|
:: Esper library is used, in which case it is subject to the terms of General Public License v2.0.
|
|
:: If a copy of the MPL was not distributed with this file, you can obtain one at
|
|
:: https://www.mozilla.org/en-US/MPL/2.0/
|
|
::
|
|
|
|
set EMS_CONFIG_DIR=.
|
|
|
|
setlocal
|
|
rem set JAVA_OPTS= -Djavax.net.ssl.trustStore=..\config-files\broker-truststore.p12 ^
|
|
rem -Djavax.net.ssl.trustStorePassword=melodic ^
|
|
rem -Djavax.net.ssl.trustStoreType=pkcs12
|
|
rem -Djavax.net.debug=all
|
|
rem -Djavax.net.debug=ssl,handshake,record
|
|
|
|
java %JAVA_OPTS% -jar target\broker-client-jar-with-dependencies.jar %*
|
|
|
|
endlocal
|