-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
updated windows batch script to work with Java 17
- Loading branch information
1 parent
f9f34cd
commit 0d652ed
Showing
3 changed files
with
11 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
::BATCH file for windows | ||
::BATCH file to windows | ||
@echo off | ||
|
||
set BATDIR=%~dp0 | ||
set LIBDIR="%BATDIR%..\build\libs-all" | ||
set LIBDIR="%BATDIR%..\build\libs-all\*" | ||
|
||
java -Djava.ext.dirs=%LIBDIR% com.beanit.iec61850bean.app.ConsoleClient %* | ||
java -cp %LIBDIR% com.beanit.iec61850bean.app.ConsoleClient %* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,8 @@ | ||
::BATCH file to windows | ||
@echo off | ||
|
||
set BATDIR=%~dp0 | ||
set LIBDIR="%BATDIR%..\build\libs-all" | ||
set LIBDIR="%BATDIR%..\build\libs-all\*" | ||
|
||
java -Dlogback.configurationFile=logback.xml -cp %LIBDIR% com.beanit.iec61850bean.app.ConsoleServer %* | ||
|
||
java -Dlogback.configurationFile=logback.xml -Djava.ext.dirs=%LIBDIR% com.beanit.iec61850bean.app.ConsoleServer %* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,7 @@ | ||
::BATCH file to windows | ||
@echo off | ||
|
||
set BATDIR=%~dp0 | ||
set LIBDIR="%BATDIR%..\build\libs-all" | ||
set LIBDIR="%BATDIR%..\build\libs-all\*" | ||
|
||
java -Djava.ext.dirs=%LIBDIR% com.beanit.iec61850bean.clientgui.ClientGui %* | ||
java -cp %LIBDIR% com.beanit.iec61850bean.clientgui.ClientGui %* |