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
19
19
docs.javadocs.userapi =${docs.javadocs}/user-api
20
20
installer =${basedir}/installer
21
21
installer.lib =${installer}/lib
22
+ basedir_includes =${basedir}/basedir-includes
22
23
23
24
# jars
24
25
client-core.jar =mirth-client-core.jar
@@ -47,4 +48,4 @@ setup.docs=${setup}/docs
47
48
# dist directory
48
49
dist =${basedir}/dist
49
50
dist.extensions =${dist}/extensions
50
- test.dist =${basedir}/testdist
51
+ test.dist =${basedir}/testdist
Original file line number Diff line number Diff line change 1002
1002
<fileset dir =" ${ docs } " />
1003
1003
</copy >
1004
1004
1005
+ <!-- copy basedir files -->
1006
+ <copy todir =" ${ setup } " >
1007
+ <fileset dir =" ${ basedir_includes } " />
1008
+ </copy >
1009
+
1005
1010
<!-- create the server jar -->
1006
1011
<jar destfile =" ${ setup.server.lib } /${ server.jar } " basedir =" ${ classes } " >
1007
1012
<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
+ #
1
5
--add-modules=java.sql.rowset
2
6
--add-exports=java.base/com.sun.crypto.provider=ALL-UNNAMED
3
7
--add-exports=java.base/sun.security.provider=ALL-UNNAMED
15
19
--add-opens=java.desktop/java.awt=ALL-UNNAMED
16
20
--add-opens=java.desktop/java.awt.color=ALL-UNNAMED
17
21
--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