-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathbuild.properties
More file actions
26 lines (19 loc) · 848 Bytes
/
build.properties
File metadata and controls
26 lines (19 loc) · 848 Bytes
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
# The source code for the examples can be found in this directory
src.dir=src/main/java
test.dir=src/test/java
# The path to cobertura.jar
cobertura.dir=./tools/cobertura-2.1.1
libs.dir=src/main/webapp/WEB-INF/lib
# Classes generated by the javac compiler are deposited in this directory
classes.dir=target/classes
# Instrumented classes are deposited into this directory
instrumented.dir=target/reports/instrumented
# All reports go into this directory
reports.dir=target/reports
# Unit test reports from JUnit are deposited into this directory
reports.xml.dir=${reports.dir}/junit-xml
reports.html.dir=${reports.dir}/junit-html
# Coverage reports are deposited into these directories
coverage.xml.dir=${reports.dir}/cobertura-xml
coverage.summaryxml.dir=${reports.dir}/cobertura-summary-xml
coverage.html.dir=${reports.dir}/cobertura-html