Skip to content

Commit

Permalink
fixed Install4J for Windows/Linux to cbit.vcell.client.VCellClientMain
Browse files Browse the repository at this point in the history
  • Loading branch information
jcschaff committed Oct 20, 2023
1 parent b12d84b commit 3f163c9
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ Requirements: Eclipse IDE for Java Developers and Java JDK 1.8 or later
* Name: VCellClient
* Main:
* Project: `vcell-client`
* Main Class: `cbit.vcell.client.test.VCellClientMain`
* Main Class: `cbit.vcell.client.VCellClientMain`
* Arguments:
* Program arguments: `vcellapi-beta.cam.uchc.edu:8080`
* VM arguments are:
Expand Down
8 changes: 4 additions & 4 deletions docker/build/installers/VCell.install4j
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@
<launcher name="VCell-${compiler:Site}-Windows64" id="345" icnsFile="${compiler:vcellIcnsFile}">
<executable name="VCell-${compiler:Site}" iconSet="true" failOnStderrOutput="false" executableMode="gui" checkConsoleParameter="true" dpiAware="false" />
<splashScreen show="true" bitmapFile="${compiler:vcell5SplashScreenPngFilePath}" textOverlay="true" />
<java mainClass="cbit.vcell.client.test.VCellClientMain" vmParameters="&quot;-Dvcell.installDir=${launcher:sys.launcherDirectory}&quot;">
<java mainClass="cbit.vcell.client.VCellClientMain" vmParameters="&quot;-Dvcell.installDir=${launcher:sys.launcherDirectory}&quot;">
<classPath>
<scanDirectory location="lib" failOnError="false" />
</classPath>
Expand Down Expand Up @@ -181,7 +181,7 @@
<launcher name="VCell-${compiler:Site}-Windows32" id="447" icnsFile="${compiler:vcellIcnsFile}">
<executable name="VCell-${compiler:Site}" iconSet="true" failOnStderrOutput="false" executableMode="gui" checkConsoleParameter="true" dpiAware="false" />
<splashScreen show="true" bitmapFile="${compiler:vcell5SplashScreenPngFilePath}" textOverlay="true" />
<java mainClass="cbit.vcell.client.test.VCellClientMain" vmParameters="&quot;-Dvcell.installDir=${launcher:sys.launcherDirectory}&quot;">
<java mainClass="cbit.vcell.client.VCellClientMain" vmParameters="&quot;-Dvcell.installDir=${launcher:sys.launcherDirectory}&quot;">
<classPath>
<scanDirectory location="lib" failOnError="false" />
</classPath>
Expand Down Expand Up @@ -212,7 +212,7 @@
<launcher name="VCell-${compiler:Site}-Linux32" id="534" icnsFile="${compiler:vcellIcnsFile}">
<executable name="VCell-${compiler:Site}" failOnStderrOutput="false" executableMode="gui" checkConsoleParameter="true" dpiAware="false" />
<splashScreen bitmapFile="${compiler:vcell5SplashScreenPngFilePath}" />
<java mainClass="cbit.vcell.client.test.VCellClientMain" vmParameters="&quot;-Dvcell.installDir=${launcher:sys.launcherDirectory}&quot;">
<java mainClass="cbit.vcell.client.VCellClientMain" vmParameters="&quot;-Dvcell.installDir=${launcher:sys.launcherDirectory}&quot;">
<classPath>
<scanDirectory location="lib" failOnError="false" />
</classPath>
Expand All @@ -239,7 +239,7 @@
<launcher name="VCell-${compiler:Site}-Linux64" id="627" icnsFile="${compiler:vcellIcnsFile}">
<executable name="VCell-${compiler:Site}" failOnStderrOutput="false" executableMode="gui" checkConsoleParameter="true" dpiAware="false" />
<splashScreen bitmapFile="${compiler:vcell5SplashScreenPngFilePath}" />
<java mainClass="cbit.vcell.client.test.VCellClientMain" vmParameters="&quot;-Dvcell.installDir=${launcher:sys.launcherDirectory}&quot;">
<java mainClass="cbit.vcell.client.VCellClientMain" vmParameters="&quot;-Dvcell.installDir=${launcher:sys.launcherDirectory}&quot;">
<classPath>
<scanDirectory location="lib" failOnError="false" />
</classPath>
Expand Down
2 changes: 1 addition & 1 deletion docs-misc/README_flow_control.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

#Remote Login (client-server)
Client-Side
-cbit.vcell.client.test.VCellClientMain
-cbit.vcell.client.VCellClientMain
--cbit.vcell.client.VCellClient
---cbit.vcell.client.server.ClientServerManager
----cbit.vcell.message.server.bootstrap.client.RemoteProxyVCellConnectionFactory
Expand Down
2 changes: 1 addition & 1 deletion vcell.bat
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
echo off

set CLASSPATH=.\vcell-client\target\maven-jars\*;.\vcell-client\target\*
set MAIN_CLASS=cbit.vcell.client.test.VCellClientMain
set MAIN_CLASS=cbit.vcell.client.VCellClientMain

set props=-Dvcell.installDir=%~dp0
set props=%props% -Dvcell.softwareVersion=standalone_VCell_7.0
Expand Down

0 comments on commit 3f163c9

Please sign in to comment.