|
@@ -12,8 +12,12 @@ build.test.classes.dir=${build.dir}/test/classes
|
|
build.test.results.dir=${build.dir}/test/results
|
|
build.test.results.dir=${build.dir}/test/results
|
|
debug.classpath=\
|
|
debug.classpath=\
|
|
${run.classpath}
|
|
${run.classpath}
|
|
|
|
+debug.modulepath=\
|
|
|
|
+ ${run.modulepath}
|
|
debug.test.classpath=\
|
|
debug.test.classpath=\
|
|
${run.test.classpath}
|
|
${run.test.classpath}
|
|
|
|
+debug.test.modulepath=\
|
|
|
|
+ ${run.test.modulepath}
|
|
# This directory is removed when the project is cleaned:
|
|
# This directory is removed when the project is cleaned:
|
|
dist.dir=dist
|
|
dist.dir=dist
|
|
dist.jar=${dist.dir}/helloworld.jar
|
|
dist.jar=${dist.dir}/helloworld.jar
|
|
@@ -27,6 +31,8 @@ javac.classpath=\
|
|
# Space-separated list of extra javac options
|
|
# Space-separated list of extra javac options
|
|
javac.compilerargs=
|
|
javac.compilerargs=
|
|
javac.deprecation=false
|
|
javac.deprecation=false
|
|
|
|
+javac.modulepath=
|
|
|
|
+javac.processormodulepath=
|
|
javac.source=1.7
|
|
javac.source=1.7
|
|
javac.target=1.7
|
|
javac.target=1.7
|
|
javac.test.classpath=\
|
|
javac.test.classpath=\
|
|
@@ -34,6 +40,8 @@ javac.test.classpath=\
|
|
${build.classes.dir}:\
|
|
${build.classes.dir}:\
|
|
${libs.junit.classpath}:\
|
|
${libs.junit.classpath}:\
|
|
${libs.junit_4.classpath}
|
|
${libs.junit_4.classpath}
|
|
|
|
+javac.test.modulepath=\
|
|
|
|
+ ${javac.modulepath}
|
|
javadoc.additionalparam=
|
|
javadoc.additionalparam=
|
|
javadoc.author=false
|
|
javadoc.author=false
|
|
javadoc.encoding=${source.encoding}
|
|
javadoc.encoding=${source.encoding}
|
|
@@ -56,9 +64,13 @@ run.classpath=\
|
|
# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value
|
|
# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value
|
|
# or test-sys-prop.name=value to set system properties for unit tests):
|
|
# or test-sys-prop.name=value to set system properties for unit tests):
|
|
run.jvmargs=
|
|
run.jvmargs=
|
|
|
|
+run.modulepath=\
|
|
|
|
+ ${javac.modulepath}
|
|
run.test.classpath=\
|
|
run.test.classpath=\
|
|
${javac.test.classpath}:\
|
|
${javac.test.classpath}:\
|
|
${build.test.classes.dir}
|
|
${build.test.classes.dir}
|
|
|
|
+run.test.modulepath=\
|
|
|
|
+ ${javac.test.modulepath}
|
|
source.encoding=UTF-8
|
|
source.encoding=UTF-8
|
|
src.dir=src
|
|
src.dir=src
|
|
test.src.dir=test
|
|
test.src.dir=test
|