-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathAPE.properties
76 lines (62 loc) · 3.62 KB
/
APE.properties
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
#Set the base URI of the ARE to use
#Default: Relative to the location of APE.jar
ARE.baseURI=../AsTeRICS/bin/ARE/
#Set the model src file(s) / src folder(s), either relative to APE.projectDir or as absolute directory or file URIs
#Seperate several URIs by semicolon (;)
#Default: bin/ARE/models (this value will always be appended to the property to include custom models in the custom/bin/ARE/models subfolder)
#APE.models=../../ARE/models/CameraMouse.acs;../../ARE/models/ImageDemo.acs
#The path to the build folder, can be relative or absolute
#Default: build
#APE.buildDir=build/
#Select copy mode for ARE/data folder.
#Possible values: all|single|none
#all: Copy all data files of the ARE installation folder
#single: Try to determine the referenced resources in a model an only copy that files (EXPERIMENTAL)
#none: Don't copy any data files (If data files are needed provide the through the custom/bin/ARE/data folder)
#Default: all
APE.dataCopyMode=none
#Select copy mode for files in the web server document root
#Possible values: all|none
#Default: all
APE.webCopyMode=none
#Specifiy additional services files located in profile/ here
#APE.servicesFiles=
#################################
#Java FX installer properties starting with the prefix 'fx'
#For a detailed description, check https://docs.oracle.com/javase/8/docs/technotes/guides/deploy/javafx_ant_task_reference.html
#But just some of them are supported in the provided ant build-file. If you need others, you can modify the ant build file on your own.
#currently: exe|msi|deb|image|all|none
#image: Only the final folder structure is created which can be used to create a .zip file.
#all: all supported installer types for the platform are created
fx.deploy.nativeBundles=deb
#Verbosity of deployment, Set to true to see temp files that can be used for drop-in customization of installers by copying them to package/**/
#Default: false
fx.deploy.verbose=true
#Name and version of the application
#fx.application.name=AsTeRICS Ergo
fx.application.name=asterics-ergo
fx.application.version=4.2.0
#Provide more detailed information here
fx.info.title=Assistive Technology for Occupational Therapy
fx.info.vendor=Asterics Foundation
fx.info.description=Assistive Technology Application based on AsTeRICS for Occupational Therapy
fx.info.license=MIT | GPLv3 with Exception
fx.info.category=Assistive Technology
#Desktop integration of the application
fx.preferences.shortcut=true
#by setting fx.preferences.install=false the application is installed into the users' AppData folder and not system-wide into the Program File(x86) folder.
fx.preferences.install=false
fx.preferences.menu=true
#Set to true if java should be embedded
#Note: You can define the JRE Version to use by defining the property fx.platform.basedir (see below)
#Default: false
#APE.embedJava=true
#Set the JRE platform basedir to use when embedding java. This is only used if the property APE.embedJava=true
#Use \\ or / as path seperator
# NOTE: To make the project runnable with any Java version use the -D command line switch for the deploy target to explicitely define the JRE to embed:
# e.g. ant -Dfx.platform.basedir="C:\\Program Files (x86)\\Java\\jdk1.8.0_131\\jre\\" deploy
#Default: java.home
#fx.platform.basedir=C:\\Program Files (x86)\\Java\\jdk1.8.0_131\\jre\\
#commands for deploy scripts:
#ant -Dfx.application.name="AsTeRICS Ergo" -Dfx.deploy.nativeBundles="exe" -Dfx.application.version="4.2.1" -DAPE.embedJava="true" -Dfx.platform.basedir="C:\\Program Files (x86)\\Java\\jdk1.8.0_171\\jre\\" deploy
#ant -Dfx.application.name="asterics-ergo" -Dfx.deploy.nativeBundles="deb" -Dfx.application.version="4.2.1" -DAPE.embedJava="false"