-
Notifications
You must be signed in to change notification settings - Fork 5
/
build.properties
64 lines (55 loc) · 2.08 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
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
# Current versions
waveinabox.version=0.3
# Build file paths
build.classpath.path=${basedir}/build-classpath.xml
build.common.path=${basedir}/build-common.xml
build.macros.path=${basedir}/build-macros.xml
build.sysclasspath=ignore
# Source code dirs
src.dir=${basedir}/src
src.proto.dir=${basedir}/proto_src
test.dir=${basedir}/test
# Generated code (GXP and PST DTOs).
gen.dir=${basedir}/gen
# These libs are needed at runtime
lib.dir=${basedir}/third_party
# Libs meant for test and runtime respectively
lib.test=${lib.dir}/test
lib.runtime=${lib.dir}/runtime
lib.codegen=${lib.dir}/codegen
# Intermediary build directories (temporary)
build.dir=${basedir}/build
build.messages.dir=${build.dir}/messages
build.proto.dir=${build.dir}/proto
build.src.dir=${build.dir}/src
build.test.dir=${build.dir}/test
build.log.dir=${build.dir}/logs
coverage.dir=${build.dir}/coverage
staging.dir=${build.dir}/staging
# Incremental task markers
dep=${build.dir}/dep
# These are final output directories
dist.dir=${basedir}/dist
dist.libraries.dir=${basedir}/dist/libraries
test.out.dir=${basedir}/test_out
docs.dir=${basedir}/doc
api.jar.out=${dist.dir}/waveinabox-api-${waveinabox.version}.jar
server.jar.out=${dist.dir}/waveinabox-server-${waveinabox.version}.jar
consoleclient.jar.out=${dist.dir}/waveinabox-client-console-${waveinabox.version}.jar
robotclient.jar.out=${dist.dir}/wave-api-${waveinabox.version}.jar
export-import.jar.out=${dist.dir}/waveinabox-export-import-${waveinabox.version}.jar
messages.jar.out=${dist.dir}/messages.jar
# Javac properties
javac.source = 1.7