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