File tree Expand file tree Collapse file tree 6 files changed +52
-2
lines changed
Expand file tree Collapse file tree 6 files changed +52
-2
lines changed Original file line number Diff line number Diff line change 1+ # Lines begining with a # are ignored as comments.
2+ # Do not add customizations to this file.
3+
4+ -include-options conf/base_includes.vmoptions
5+
6+ # Comment out the following line if you are running on Java 8
7+ -include-options conf/default_modules.vmoptions
8+
9+ # Put any custom options in the following file
10+ -include-options conf/custom.vmoptions
Original file line number Diff line number Diff line change @@ -19,6 +19,7 @@ docs.javadocs=${docs}/javadocs
1919docs.javadocs.userapi =${docs.javadocs}/user-api
2020installer =${basedir}/installer
2121installer.lib =${installer}/lib
22+ basedir_includes =${basedir}/basedir-includes
2223
2324# jars
2425client-core.jar =mirth-client-core.jar
@@ -47,4 +48,4 @@ setup.docs=${setup}/docs
4748# dist directory
4849dist =${basedir}/dist
4950dist.extensions =${dist}/extensions
50- test.dist =${basedir}/testdist
51+ test.dist =${basedir}/testdist
Original file line number Diff line number Diff line change 10021002 <fileset dir =" ${ docs } " />
10031003 </copy >
10041004
1005+ <!-- copy basedir files -->
1006+ <copy todir =" ${ setup } " >
1007+ <fileset dir =" ${ basedir_includes } " />
1008+ </copy >
1009+
10051010 <!-- create the server jar -->
10061011 <jar destfile =" ${ setup.server.lib } /${ server.jar } " basedir =" ${ classes } " >
10071012 <include name =" com/mirth/connect/server/**" />
Original file line number Diff line number Diff line change 1+ #
2+ # Do not modify this file! It may get overwritten in an update. Please put all custom
3+ # options in custom.vmoptions
4+ #
5+ -server
6+ -Xmx256m
7+ -Djava.awt.headless=true
8+ -Dapple.awt.UIElement=true
Original file line number Diff line number Diff line change 1+ # Add any custom vmoptions to this file. Special directives are:
2+ #
3+ # -include-options <path to file>
4+ # : include options from another .vmoptions file. Applied recursively.
5+ #
6+ # -classpath <path>
7+ # : replace the classpath built so far with <path>
8+ #
9+ # -classpath/p <path>
10+ # : prepend <path> to classpath.
11+ #
12+ # -classpath/a <path>
13+ # : append <path> to classpath.
14+ #
15+ # -java-cmd <path to java command>
16+ # : use the java binary specified to launch the engine.
17+ #
18+ # Additionally, the form ${ENV_VAR} can be used anywhere in the file to substitute the value
19+ # from an environment variable.
20+ #
21+ # Any lines which do not match the special directives above will be passed through directly as
22+ # arguments to the java binary.
Original file line number Diff line number Diff line change 1+ #
2+ # Do not modify this file! It may get overwritten in an update. Please put all custom
3+ # options in custom.vmoptions
4+ #
15--add-modules=java.sql.rowset
26--add-exports=java.base/com.sun.crypto.provider=ALL-UNNAMED
37--add-exports=java.base/sun.security.provider=ALL-UNNAMED
1519--add-opens=java.desktop/java.awt=ALL-UNNAMED
1620--add-opens=java.desktop/java.awt.color=ALL-UNNAMED
1721--add-opens=java.desktop/java.awt.font=ALL-UNNAMED
18- --add-opens=java.xml/com.sun.org.apache.xalan.internal.xsltc.trax=ALL-UNNAMED
22+ --add-opens=java.xml/com.sun.org.apache.xalan.internal.xsltc.trax=ALL-UNNAMED
You can’t perform that action at this time.
0 commit comments