-
Notifications
You must be signed in to change notification settings - Fork 182
/
build.properties
64 lines (55 loc) · 2.85 KB
/
build.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
# SCIPIO: Shared project build properties
#
# This file is read at the beginning of build.xml, and is NOT ignored by version control (git).
# You can specify project properties here to share between all developers/users of your project.
#
# NOTE: For developer/machine-specific local properties, use build.scp.local.properties instead (git-ignored).
# You may need to create build.scp.local.properties if it does not exist.
#
# Possible keys and defaults (other than the common ones documented below) are found throughout
# the root build.xml and some in component build.xml files.
# NOTE: Component build.xml files do not automatically receive (inherit) all the properties
# defined here; only the ones listed in the "ofbiz.subbuild.props.pass" propertyset in
# root build.xml will get passed to components (this may behave differently from
# command line -Dkey=value property passing).
#
# Keep in mind, in Apache Ant, properties cannot be overridden, so the first one
# defined is the one that takes effect. As such command-line -Dkey=value properties
# and build.scp.local.properties entries have priority over the ones in this file.
#
# NOTE: 2019-05-27: The local build file name has been changed to build.scp.local.properties
# to adopt the new standard git ignore (*.scp.local.properties); for this file (only),
# the legacy file name build.local.properties may still be used.
#
############################################
# Common property reference
############################################
# Non-comprehensive reference of useful build properties
####
# Build
####
# javac: overrides definitions in macros.xml for the main build (run ant clean after changing)
#scipio.build.javac.release=
####
# Framework
####
# The default JDBC driver ivy conf name(s) to deploy and update to framework/entity/lib/jdbc/ folder
# Supports comma-separated list of many; the first-listed takes priority (for any case where only one value supported).
# Stock confs: derby,mssql,mysql,mariadb,postgresql,[jaybird|firebird],[hsqldb|hsql] (for full list, see framework/entity/ivy.xml)
#lib.entity.jdbc.conf.default=derby
####
# Developer tools
####
# Enable by default library JAR sources downloading on build task
# Use this to avoid needing to manually run the equivalent build-withlibsrc task manually
# after deployed lib clean.
#build.lib.update.sources=true
# Enable by default library JAR sources downloading on all build and lib-update-* tasks
# Affects more tasks than build.lib.update.sources.
# WARN: This is not vetted to work well in all circumstances, and could affect some tasks
# negatively; if build.lib.update.sources is sufficient for you, use that instead.
#lib.update.sources=true
############################################
# Custom properties
############################################
# (Insert custom properties below this line - avoids needless merge conflicts)