-
Notifications
You must be signed in to change notification settings - Fork 0
/
build.properties
37 lines (30 loc) · 956 Bytes
/
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
# Tells eclipse editor that we have a custom config
custom = true
# Rules:
# - use relative paths
# - variables may be used by release/build.xml
# Where to find source - Set versions, encoding
source.dir = src
source.include = lejos/**
source.exclude =
source.encoding = utf-8
source.warn = all,-fallthrough,-deprecation
source.version = 1.5
target.version = 1.5
resource.dir = resource
resource.include =
resource.exclude =
# Where to put generated stuff
build.dir = build
project.name = charting
classes.dir = ${build.dir}/classes
classes.jar = ${build.dir}/${project.name}.jar
classes.src.zip = ${build.dir}/${project.name}-src.zip
docs.dir = ${build.dir}/docs
docs.include = ${source.include}
docs.exclude = ${source.exclude},**/internal/**
docs.zip = ${build.dir}/${project.name}-docs.zip
# Which are generated, which are not
dist.zip = ${build.dir}/${project.name}-dist.zip
dist.include =
dist.exclude = bin/**, target/**, ${build.dir}/**