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 3.0KB

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