You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

project.properties 2.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384
  1. jaxbwiz.endorsed.dirs="${netbeans.home}/../ide12/modules/ext/jaxb/api"
  2. project.license=dmdirc
  3. application.title=DMDirc
  4. application.vendor=chris
  5. build.generated.sources.dir=${build.dir}/generated-sources
  6. file.reference.junit-4.jar=lib/junit-4.1.jar
  7. doccheck.path=doccheck.jar
  8. doccheck.dir=reports/doccheck/
  9. # application.args=
  10. build.classes.dir=${build.dir}/classes
  11. build.classes.excludes=**/*.java,**/*.form,**/*.svg,**/*.xcf,**/*.sh
  12. # This directory is removed when the project is cleaned:
  13. build.dir=build
  14. build.generated.dir=${build.dir}/generated
  15. # Only compile against the classpath explicitly listed here:
  16. build.sysclasspath=ignore
  17. build.test.classes.dir=${build.dir}/test/classes
  18. build.test.results.dir=${build.dir}/test/results
  19. # This directory is removed when the project is cleaned:
  20. dist.dir=dist
  21. dist.jar=${dist.dir}/DMDirc.jar
  22. dist.javadoc.dir=${dist.dir}/javadoc
  23. dist.jar.excludes=com/dmdirc/addons/**
  24. excludes=
  25. includes=**
  26. jar.compress=false
  27. # Space-separated list of extra javac options
  28. javac.compilerargs=-Xlint:all -Xmaxerrs 1000
  29. javac.deprecation=true
  30. javac.source=1.6
  31. javac.target=1.6
  32. javadoc.additionalparam=-overview ${main.src.dir}/overview.html
  33. javadoc.author=false
  34. javadoc.encoding=
  35. javadoc.noindex=false
  36. javadoc.nonavbar=false
  37. javadoc.notree=false
  38. javadoc.private=false
  39. javadoc.splitindex=true
  40. javadoc.use=true
  41. javadoc.version=false
  42. javadoc.windowtitle=DMDirc
  43. main.class=com.dmdirc.Main
  44. manifest.file=manifest.mf
  45. meta.inf.dir=${main.src.dir}/META-INF
  46. platform.active=default_platform
  47. # Space-separated list of JVM arguments used when running the project
  48. # (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value
  49. # or test-sys-prop.name=value to set system properties for unit tests):
  50. run.jvmargs=
  51. main.src.dir=src
  52. parser.src.dir=modules/parser/src
  53. plugins.src.dir=modules/plugins/src
  54. main.test.dir=test
  55. parser.test.dir=modules/parser/test
  56. plugins.test.dir=modules/plugins/test
  57. # Classpaths
  58. # ${plugins.libs.path} generates at compile-time a string containing all
  59. # the plugin jars.
  60. # However netbeans fails miserably at understanding this in the IDE, so we
  61. # have the private.classpath variable that can be defined by the user in
  62. # private.properties that contains any jars they need to satisfy netbeans
  63. # suckiness.
  64. # Without this parameter, everything will still compile, but netbeans won't
  65. # know about any files it isn't explicitly told about.
  66. javac.classpath=${private.classpath}:${plugins.libs.path}
  67. javac.test.classpath=\
  68. ${javac.classpath}:\
  69. ${build.classes.dir}:\
  70. ${file.reference.junit-4.jar}
  71. run.classpath=\
  72. ${javac.classpath}:\
  73. ${build.classes.dir}
  74. run.test.classpath=\
  75. ${javac.test.classpath}:\
  76. ${build.test.classes.dir}:\
  77. ${file.reference.junit-4.jar}
  78. debug.classpath=\
  79. ${run.classpath}
  80. debug.test.classpath=\
  81. ${run.test.classpath}