2
|
1 |
# IMPORTANT NOTE
|
|
2 |
#
|
|
3 |
# If you made a private copy of this project you may have to update the
|
|
4 |
# nbjdk.home variable at the end of this file.
|
|
5 |
#
|
|
6 |
# To be able to run the test-suite, you will also have to set the
|
|
7 |
# variable:
|
|
8 |
#
|
|
9 |
# libs.junit.classpath=<junit.jar>
|
|
10 |
#
|
|
11 |
|
|
12 |
main.dir=.
|
|
13 |
|
|
14 |
src.dir=${main.dir}/src
|
|
15 |
test.src.dir=${main.dir}/test
|
|
16 |
|
|
17 |
build.dir=build
|
|
18 |
classes.dir=${build.dir}/classes
|
|
19 |
|
|
20 |
dist.dir=dist
|
|
21 |
jar=${dist.dir}/jmx-scandir.jar
|
|
22 |
javadoc.dir=${dist.dir}/javadoc
|
|
23 |
|
|
24 |
build.test.classes.dir=${build.dir}/test/classes
|
|
25 |
build.test.results.dir=${build.dir}/test/results
|
|
26 |
|
|
27 |
build.sysclasspath=ignore
|
|
28 |
# E.g.: cp=lib/x.jar:lib/y.jar
|
|
29 |
cp=
|
|
30 |
extra.run.cp=
|
|
31 |
|
|
32 |
# To be able to run the test-suite, set the following property:
|
|
33 |
# libs.junit.classpath=...
|
|
34 |
|
|
35 |
javac.test.classpath=\
|
|
36 |
${classes.dir}:\
|
|
37 |
${libs.junit.classpath}
|
|
38 |
|
|
39 |
main.agent.class=com.sun.jmx.examples.scandir.ScanDirAgent
|
|
40 |
main.client.class=com.sun.jmx.examples.scandir.ScanDirClient
|
|
41 |
main.class=${main.client.class}
|
|
42 |
|
|
43 |
run.jvmargs=-Djava.util.logging.config.file=logging.properties
|
|
44 |
common.jvmargs=${run.jvmargs} -Djavax.net.ssl.keyStore=keystore -Djavax.net.ssl.keyStorePassword=password -Djavax.net.ssl.trustStore=truststore -Djavax.net.ssl.trustStorePassword=trustword
|
|
45 |
client.jvmargs=${common.jvmargs}
|
|
46 |
agent.jvmargs=${common.jvmargs} -Dcom.sun.management.config.file=src/etc/management.properties -Dscandir.config.file=src/etc/testconfig.xml
|
|
47 |
|
|
48 |
client.args=localhost 4545
|
|
49 |
|
|
50 |
run.cp=${cp}:${classes.dir}:${extra.run.cp}
|
|
51 |
run.test.classpath=${run.cp}:${build.test.classes.dir}
|
|
52 |
|
|
53 |
debug=true
|
|
54 |
deprecation=false
|
|
55 |
|
|
56 |
# Update this variable if need be to point to the JDK 6 location.
|
|
57 |
#
|
|
58 |
nbjdk.home=${basedir}/../../..
|