Skip to content

Commit bbb168f

Browse files
upgrade to Repast Simphony 2.10.0
1 parent b431df8 commit bbb168f

16 files changed

+98
-47
lines changed

LICENSE LICENSE.txt

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
Copyright (C) 2017-2022 Jacob Nabe-Nielsen <jnn@bios.au.dk>
1+
Copyright (C) 2017-2023 Jacob Nabe-Nielsen <jnn@bios.au.dk>
22

33
This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public
44
License version 2 and only version 2 as published by the Free Software Foundation.

Repast.settings

+3-5
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,10 @@
33
<hashtable>
44
<default>
55
<loadFactor>0.75</loadFactor>
6-
<threshold>3</threshold>
6+
<threshold>8</threshold>
77
</default>
8-
<int>5</int>
9-
<int>3</int>
10-
<string>SettingsFileName</string>
11-
<string>Repast.settings</string>
8+
<int>11</int>
9+
<int>2</int>
1210
<string>SettingsRegistryId</string>
1311
<string>Repast.registry</string>
1412
<string>LastLoadedScenario</string>

installer/create_model_archive.xml

+8-3
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,8 @@
22

33
<project name="BuildModelArchive" default="build_archive" basedir="..">
44

5+
<record name="build_model_archive.log" loglevel="verbose" action="start"/>
6+
57
<target name="build_archive">
68
<!-- Location of the Eclipse /plugins folder -->
79
<echo message="EclipsePluginsDirectory = ${EclipsePluginsDirectory}" />
@@ -68,7 +70,9 @@
6870
<replacefilter token="$REPAST_VERSION" value="${REPAST_VERSION}" />
6971
<replacefilter token="$Groovy_Jar" value="${Groovy_Jar}" />
7072
</replace>
71-
73+
74+
<delete file="${output_file}"/>
75+
7276
<!-- Create the zip archive -->
7377
<zip destfile="${output_file}">
7478
<!-- Include the complete model folder -->
@@ -83,9 +87,10 @@
8387
<!-- Copy the Groovy jar -->
8488
<zipfileset dir="${Groovy_Jar_Dir}" includes="${Groovy_Jar}" prefix="groovylib"/>
8589

86-
<!-- Copy the Repast libs -->
90+
<!-- Copy the Repast libs (exclude r.s.eclipse) -->
8791
<zipfileset dir="${EclipsePluginsDirectory}" includes="libs.*${REPAST_VERSION}/**" prefix="repast.simphony"/>
88-
<zipfileset dir="${EclipsePluginsDirectory}" includes="repast.simphony.*${REPAST_VERSION}/**" prefix="repast.simphony"/>
92+
<zipfileset dir="${EclipsePluginsDirectory}" includes="repast.simphony.*${REPAST_VERSION}/**"
93+
excludes="repast.simphony.eclipse_*${REPAST_VERSION}/**" prefix="repast.simphony"/>
8994
<zipfileset dir="${EclipsePluginsDirectory}" includes="saf.core.ui*${REPAST_VERSION}/**" prefix="repast.simphony"/>
9095
</zip>
9196

installer/hellopanel.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
<html style="height: 100%">
22
<head>
3-
<title>DEPONS 2.3 Model</title>
3+
<title>DEPONS 2.3.1 Model</title>
44
</head>
55
<body style="height: 100%; margin-top: 20px; width: 100%; margin-right: auto; margin-left: auto; background: #fefefe;">
66
<img src="SPLASHPNG" style="width: 60%; display: block; margin-right: auto; margin-left: auto" />
7-
<h1 style="color: #008eba; text-align: center">Welcome to the DEPONS 2.3 installer</h1>
7+
<h1 style="color: #008eba; text-align: center">Welcome to the DEPONS 2.3.1 installer</h1>
88
</body>
99
</html>

installer/installation_components.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
<info>
1111
<appname>DEPONS</appname>
12-
<appversion>2.3</appversion>
12+
<appversion>2.3.1</appversion>
1313
<summarylogfilepath>$INSTALL_PATH/installinfo/Summary.htm</summarylogfilepath>
1414
</info>
1515

@@ -43,7 +43,7 @@
4343
</locale>
4444

4545
<resources>
46-
<res src="$StagingArea/LICENSE" id="LicencePanel.licence"/>
46+
<res src="$StagingArea/LICENSE.txt" id="LicencePanel.licence"/>
4747
<res src="$StagingArea/installer/hellopanel.html" id="HTMLHelloPanel.info"/>
4848
<res src="$StagingArea/model_description.txt" id="InfoPanel.info"/>
4949

installer/installation_coordinator.xml

+40-23
Original file line numberDiff line numberDiff line change
@@ -13,28 +13,50 @@
1313
hard coded value that corresponds to the version that created the
1414
model installer files, against the version of Repast that is actually
1515
in use in the workspace. -->
16-
16+
1717
<!-- The Repast creator version variable is hard-coded against the release
1818
version. DO NOT USE A VARIABLE HERE! -->
19-
<property name="RepastCreatorVersion" value="2.9.1" />
20-
19+
<property name="RepastCreatorVersion" value="2.10.0" />
20+
2121
<condition property="repast.version">
22-
<equals arg1="${RepastCreatorVersion}" arg2="${REPAST_VERSION}"/>
22+
<equals arg1="${RepastCreatorVersion}" arg2="${REPAST_VERSION}"/>
2323
</condition>
24-
24+
2525
<target name="repast.version.OK" if="repast.version">
2626
<echo message="Using Repast version ${REPAST_VERSION}"/>
2727
</target>
28-
28+
2929
<target name="repast.version.check" depends="repast.version.OK" unless="repast.version">
3030
<fail message="Inompatible Repast version. The model builder configureation was built with ${RepastCreatorVersion}, but the current version is ${REPAST_VERSION}"/>
3131
</target>
32-
33-
<target name="BuildUserModelInstaller" if="repast.version" depends="repast.version.OK,repast.version.check">
32+
33+
<!-- Check for Izpack -->
34+
<property name="izpack-dist-default" value="${user.home}/IzPack"/>
35+
36+
<!-- If the IZPACK_HOME VM arg is provided, then use it, otherwise use the default.-->
37+
<condition property="izpack-dist" value="${IZPACK_HOME}" else="${izpack-dist-default}">
38+
<isset property="IZPACK_HOME" />
39+
</condition>
40+
41+
<echo message="IzPack Directory = ${izpack-dist}" />
42+
43+
<condition property="found.izpack">
44+
<available file="${izpack-dist}" />
45+
</condition>
46+
47+
<target name="izpack.OK" if="found.izpack">
48+
<echo message="IzPack Directory = ${izpack-dist}" />
49+
</target>
50+
51+
<target name="izpack.check" depends="izpack.OK" unless="found.izpack">
52+
<fail message="IzPack not found!${line.separator} *** Please download the latest IzPack release from https://izpack.org/downloads/ and install in the User home folder or ${line.separator}provide the program argument -DIZPACK_HOME in the Build Installer launch configuration to any custom IzPack install location you use. ${line.separator} *** Please see https://repast.github.io/docs/RepastReference/RepastReference.html#distribute-model for configuration notes."/>
53+
</target>
54+
55+
<target name="BuildUserModelInstaller" if="repast.version" depends="repast.version.OK,repast.version.check,izpack.check">
3456

3557
<!-- Location of the Eclipse /plugins folder -->
3658
<echo message="EclipsePluginsDirectory = ${EclipsePluginsDirectory}" />
37-
59+
3860
<!-- Search for the groovy-3.x-.jar -->
3961
<fileset dir="${EclipsePluginsDirectory}" id="groovy_jar">
4062
<filename name="**/groovy-3*.jar" />
@@ -43,20 +65,20 @@
4365
</not>
4466
<not>
4567
<filename name="**/groovy-3*-javadoc.jar" />
46-
</not>
68+
</not>
4769
</fileset>
48-
70+
4971
<!-- Relative path of groovy jar in the Eclipse plugins dir-->
5072
<property name="groovy_plugin_jar_path" refid="groovy_jar" />
51-
73+
5274
<!-- Absolute path of groovy jar -->
5375
<property name="GroovyJarLocation" value="${EclipsePluginsDirectory}/${groovy_plugin_jar_path}" />
5476
<echo message="GroovyJarLocation = ${GroovyJarLocation}" />
5577

5678
<!-- Base groovy jar file name -->
5779
<basename property="Groovy_Jar" file="${groovy_plugin_jar_path}"/>
5880
<echo message="Groovy_Jar = ${Groovy_Jar}" />
59-
81+
6082
<!-- A hidden staging dirctory to store the install files that will be deleted at cleanup -->
6183
<property name="StagingArea" value="./.temp/DEPONS" />
6284
<property name="StagingOptionalArea" value="./.temp" />
@@ -88,7 +110,6 @@
88110

89111
<chmod perm="+x" file="${StagingArea}/installer/start_model.command" />
90112

91-
92113
<copy file="installer/installation_components.xml" tofile="${StagingArea}/installation_components_temp.xml" />
93114

94115
<replace file="${StagingArea}/installation_components_temp.xml">
@@ -103,27 +124,23 @@
103124

104125
<!-- Run IzPack -->
105126
<echo message="Creating the installation file..." />
106-
107-
<property name="izpack-dist" value="${EclipsePluginsDirectory}/repast.simphony.eclipse_${REPAST_VERSION}/setupfiles/IzPack" />
108-
<echo message="IzPack Directory = ${izpack-dist}" />
109-
110127
<property name="izpack-installer" value="setup.jar"/>
111-
128+
112129
<path id="lib.path">
113-
<fileset dir="${izpack-dist}/lib" includes="*.jar"/>
130+
<fileset dir="${izpack-dist}/lib" includes="*.jar"/>
114131
</path>
115-
132+
116133
<taskdef name="izpack"
117134
classname="com.izforge.izpack.ant.IzPackTask"
118135
classpathref="lib.path"
119136
/>
120-
137+
121138
<izpack input="${StagingArea}/installation_components_temp.xml"
122139
output="${outputInstallationFile}"
123140
installerType="standard"
124141
basedir="."
125142
izPackDir="${izpack-dist}"/>
126-
143+
127144
<!-- Clear the temporary staging area -->
128145
<echo message="Clearing the temporary staging area..." />
129146
<delete includeemptydirs="true" quiet="true">

installer/shortcuts.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
<skipIfNotSupported/>
77

8-
<programGroup defaultName="DEPONS Model" location="StartMenu"/>
8+
<programGroup defaultName="DEPONS Model" location="applications"/>
99

1010
<shortcut
1111
name="DEPONS Model"
@@ -17,7 +17,7 @@
1717
target="$INSTALL_PATH\start_model.bat"
1818
commandLine=""
1919
workingDirectory="$INSTALL_PATH"
20-
description="Model"
20+
description="Run the DEPONS model"
2121
iconFile="$INSTALL_PATH\DEPONS\icons\model.ico"
2222
iconIndex="0"
2323
initialState="noShow">

installer/start_model.bat

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ REM Change to the project directory
2222
CD "DEPONS"
2323

2424
REM Start the Model
25-
START javaw -Xmx3072M -XX:+IgnoreUnrecognizedVMOptions --add-modules=ALL-SYSTEM --add-exports=java.base/jdk.internal.ref=ALL-UNNAMED -cp "%CP%" repast.simphony.runtime.RepastMain "./DEPONS.rs"
25+
START javaw -Xmx3072M -XX:+IgnoreUnrecognizedVMOptions --add-modules=ALL-SYSTEM --add-exports=java.base/jdk.internal.ref=ALL-UNNAMED --add-exports=java.base/java.lang=ALL-UNNAMED --add-exports=java.desktop/sun.awt=ALL-UNNAMED --add-exports=java.desktop/sun.java2d=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED -cp "%CP%" repast.simphony.runtime.RepastMain "./DEPONS.rs"

installer/start_model.command

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ CP=$CP:lib/*
2222
cd "DEPONS"
2323

2424
# Start the Model
25-
java -Xmx3072M -XX:+IgnoreUnrecognizedVMOptions --add-modules=ALL-SYSTEM --add-exports=java.base/jdk.internal.ref=ALL-UNNAMED -cp "$CP" repast.simphony.runtime.RepastMain "./DEPONS.rs"
25+
java -Xmx3072M -XX:+IgnoreUnrecognizedVMOptions --add-modules=ALL-SYSTEM --add-exports=java.base/jdk.internal.ref=ALL-UNNAMED --add-exports=java.base/java.lang=ALL-UNNAMED --add-exports=java.desktop/sun.awt=ALL-UNNAMED --add-exports=java.desktop/sun.java2d=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED -cp "$CP" repast.simphony.runtime.RepastMain "./DEPONS.rs"

launchers/All tests.launch

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
22
<launchConfiguration type="org.eclipse.jdt.junit.launchconfig">
3+
<booleanAttribute key="org.eclipse.debug.core.ATTR_FORCE_SYSTEM_CONSOLE_ENCODING" value="false"/>
34
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
45
<listEntry value="/DEPONS"/>
56
</listAttribute>
@@ -13,7 +14,7 @@
1314
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_ATTR_USE_ARGFILE" value="false"/>
1415
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_SHOW_CODEDETAILS_IN_EXCEPTION_MESSAGES" value="true"/>
1516
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_USE_CLASSPATH_ONLY_JAR" value="false"/>
16-
<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/java-11-openjdk-amd64"/>
17+
<stringAttribute key="org.eclipse.jdt.launching.JRE_CONTAINER" value="org.eclipse.jdt.launching.JRE_CONTAINER/org.eclipse.jdt.internal.debug.ui.launcher.StandardVMType/JavaSE-11/"/>
1718
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value=""/>
1819
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="DEPONS"/>
1920
<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-XX:+IgnoreUnrecognizedVMOptions --add-modules=ALL-SYSTEM --add-opens java.base/java.lang=ALL-UNNAMED --add-exports=java.base/jdk.internal.ref=ALL-UNNAMED"/>

launchers/Batch DEPONS Model.launch

+4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
22
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
3+
<booleanAttribute key="org.eclipse.debug.core.ATTR_FORCE_SYSTEM_CONSOLE_ENCODING" value="false"/>
34
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
45
<listEntry value="/DEPONS"/>
56
</listAttribute>
@@ -9,6 +10,8 @@
910
<listAttribute key="org.eclipse.debug.ui.favoriteGroups">
1011
<listEntry value="org.eclipse.debug.ui.launchGroup.run"/>
1112
</listAttribute>
13+
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_ATTR_USE_ARGFILE" value="false"/>
14+
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_SHOW_CODEDETAILS_IN_EXCEPTION_MESSAGES" value="true"/>
1215
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_USE_CLASSPATH_ONLY_JAR" value="false"/>
1316
<listAttribute key="org.eclipse.jdt.launching.CLASSPATH">
1417
<listEntry value="&lt;?xml version=&quot;1.0&quot; encoding=&quot;UTF-8&quot; standalone=&quot;no&quot;?&gt;&#10;&lt;runtimeClasspathEntry containerPath=&quot;org.eclipse.jdt.launching.JRE_CONTAINER&quot; path=&quot;2&quot; type=&quot;4&quot;/&gt;&#10;"/>
@@ -20,4 +23,5 @@
2023
<stringAttribute key="org.eclipse.jdt.launching.MODULE_NAME" value="DEPONS"/>
2124
<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="-model_dir &quot;${workspace_loc:DEPONS}&quot;"/>
2225
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="DEPONS"/>
26+
<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-XX:+IgnoreUnrecognizedVMOptions --add-modules=ALL-SYSTEM --add-exports=java.base/jdk.internal.ref=ALL-UNNAMED --add-exports=java.base/java.lang=ALL-UNNAMED --add-exports=java.xml/com.sun.org.apache.xpath.internal.objects=ALL-UNNAMED --add-exports=java.xml/com.sun.org.apache.xpath.internal=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED"/>
2327
</launchConfiguration>

launchers/Build Installer for DEPONS Model.launch

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
22
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
3+
<booleanAttribute key="org.eclipse.debug.core.ATTR_FORCE_SYSTEM_CONSOLE_ENCODING" value="false"/>
34
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
45
<listEntry value="/DEPONS"/>
56
</listAttribute>
@@ -11,11 +12,12 @@
1112
<listEntry value="org.eclipse.debug.ui.launchGroup.run"/>
1213
</listAttribute>
1314
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_ATTR_USE_ARGFILE" value="false"/>
15+
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_SHOW_CODEDETAILS_IN_EXCEPTION_MESSAGES" value="true"/>
1416
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_USE_CLASSPATH_ONLY_JAR" value="false"/>
1517
<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" value="org.eclipse.ant.ui.AntClasspathProvider"/>
1618
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="org.apache.tools.ant.launch.Launcher"/>
1719
<stringAttribute key="org.eclipse.jdt.launching.MODULE_NAME" value="DEPONS"/>
1820
<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="-buildfile &quot;${workspace_loc:DEPONS}/installer/installation_coordinator.xml&quot; -DoutputInstallationFile=&quot;${folder_prompt:the Folder to output the installer (setup.jar) file}/setup.jar&quot; -DEclipsePluginsDirectory=&quot;${eclipse_home}plugins&quot; -DREPAST_VERSION=${REPAST_VERSION}"/>
1921
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="DEPONS"/>
20-
<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-XX:+IgnoreUnrecognizedVMOptions --add-modules=ALL-SYSTEM --add-exports=java.base/jdk.internal.ref=ALL-UNNAMED"/>
22+
<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-XX:+IgnoreUnrecognizedVMOptions --add-modules=ALL-SYSTEM --add-exports=java.base/jdk.internal.ref=ALL-UNNAMED --add-exports=java.base/java.lang=ALL-UNNAMED --add-exports=java.desktop/sun.awt=ALL-UNNAMED --add-exports=java.desktop/sun.java2d=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED"/>
2123
</launchConfiguration>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
2+
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
3+
<booleanAttribute key="org.eclipse.debug.core.ATTR_FORCE_SYSTEM_CONSOLE_ENCODING" value="false"/>
4+
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
5+
<listEntry value="/DEPONS"/>
6+
</listAttribute>
7+
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_TYPES">
8+
<listEntry value="4"/>
9+
</listAttribute>
10+
<listAttribute key="org.eclipse.debug.ui.favoriteGroups">
11+
<listEntry value="org.eclipse.debug.ui.launchGroup.debug"/>
12+
<listEntry value="org.eclipse.debug.ui.launchGroup.run"/>
13+
</listAttribute>
14+
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_ATTR_USE_ARGFILE" value="false"/>
15+
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_SHOW_CODEDETAILS_IN_EXCEPTION_MESSAGES" value="true"/>
16+
<booleanAttribute key="org.eclipse.jdt.launching.ATTR_USE_CLASSPATH_ONLY_JAR" value="false"/>
17+
<stringAttribute key="org.eclipse.jdt.launching.CLASSPATH_PROVIDER" value="org.eclipse.ant.ui.AntClasspathProvider"/>
18+
<stringAttribute key="org.eclipse.jdt.launching.MAIN_TYPE" value="org.apache.tools.ant.launch.Launcher"/>
19+
<stringAttribute key="org.eclipse.jdt.launching.MODULE_NAME" value="DEPONS"/>
20+
<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="-buildfile &quot;${workspace_loc:DEPONS}/installer/create_model_archive.xml&quot; -DoutputInstallationFile=&quot;${folder_prompt:the Folder to output the archive (model.zip) file}&quot; -DEclipsePluginsDirectory=&quot;${eclipse_home}plugins&quot; -DREPAST_VERSION=${REPAST_VERSION}"/>
21+
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="DEPONS"/>
22+
<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-XX:+IgnoreUnrecognizedVMOptions --add-modules=ALL-SYSTEM --add-exports=java.base/jdk.internal.ref=ALL-UNNAMED --add-exports=java.base/java.lang=ALL-UNNAMED --add-exports=java.desktop/sun.awt=ALL-UNNAMED --add-exports=java.desktop/sun.java2d=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED"/>
23+
</launchConfiguration>

launchers/DEPONS Model.launch

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<?xml version="1.0" encoding="UTF-8" standalone="no"?>
22
<launchConfiguration type="org.eclipse.jdt.launching.localJavaApplication">
3+
<booleanAttribute key="org.eclipse.debug.core.ATTR_FORCE_SYSTEM_CONSOLE_ENCODING" value="false"/>
34
<listAttribute key="org.eclipse.debug.core.MAPPED_RESOURCE_PATHS">
45
<listEntry value="/DEPONS"/>
56
</listAttribute>
@@ -24,5 +25,5 @@
2425
<stringAttribute key="org.eclipse.jdt.launching.MODULE_NAME" value="DEPONS"/>
2526
<stringAttribute key="org.eclipse.jdt.launching.PROGRAM_ARGUMENTS" value="&quot;${workspace_loc:DEPONS}/DEPONS.rs&quot;"/>
2627
<stringAttribute key="org.eclipse.jdt.launching.PROJECT_ATTR" value="DEPONS"/>
27-
<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-Xss10M -Xmx3072M"/>
28+
<stringAttribute key="org.eclipse.jdt.launching.VM_ARGUMENTS" value="-XX:+IgnoreUnrecognizedVMOptions --add-modules=ALL-SYSTEM --add-exports=java.base/jdk.internal.ref=ALL-UNNAMED --add-exports=java.base/java.lang=ALL-UNNAMED --add-exports=java.desktop/sun.awt=ALL-UNNAMED --add-exports=java.desktop/sun.java2d=ALL-UNNAMED --add-opens java.base/java.lang=ALL-UNNAMED --add-opens java.base/java.util=ALL-UNNAMED&#10;-Xss10M -Xmx3072M"/>
2829
</launchConfiguration>

model_description.txt

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
DEPONS 2.3
1+
DEPONS 2.3.1
22

3-
This is the installer module for the DEPONS model version 2.3.
3+
This is the installer module for the DEPONS model version 2.3.1.

0 commit comments

Comments
 (0)