Java poker implementation
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.0KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. application.title=CardGame
  2. application.vendor=Chris
  3. build.classes.dir=${build.dir}/classes
  4. build.classes.excludes=**/*.java,**/*.form
  5. # This directory is removed when the project is cleaned:
  6. build.dir=build
  7. build.generated.dir=${build.dir}/generated
  8. build.generated.sources.dir=${build.dir}/generated-sources
  9. # Only compile against the classpath explicitly listed here:
  10. build.sysclasspath=ignore
  11. build.test.classes.dir=${build.dir}/test/classes
  12. build.test.results.dir=${build.dir}/test/results
  13. debug.classpath=\
  14. ${run.classpath}
  15. debug.test.classpath=\
  16. ${run.test.classpath}
  17. # This directory is removed when the project is cleaned:
  18. dist.dir=dist
  19. dist.jar=${dist.dir}/CardGame.jar
  20. dist.javadoc.dir=${dist.dir}/javadoc
  21. excludes=
  22. includes=**
  23. jar.compress=true
  24. javac.classpath=
  25. # Space-separated list of extra javac options
  26. javac.compilerargs=-Xlint:all
  27. javac.deprecation=false
  28. javac.source=1.5
  29. javac.target=1.5
  30. javac.test.classpath=\
  31. ${javac.classpath}:\
  32. ${build.classes.dir}:\
  33. ${libs.junit_4.classpath}
  34. javadoc.additionalparam=
  35. javadoc.author=false
  36. javadoc.encoding=
  37. javadoc.noindex=false
  38. javadoc.nonavbar=false
  39. javadoc.notree=false
  40. javadoc.private=false
  41. javadoc.splitindex=true
  42. javadoc.use=true
  43. javadoc.version=false
  44. javadoc.windowtitle=
  45. # Property libs.junit_4.classpath is set here just to make sharing of project simpler.
  46. # The library definition has always preference over this property.
  47. libs.junit_4.classpath=../../netbeans-6.0beta1/java1/modules/ext/junit-4.1.jar
  48. main.class=com.md87.cardgame.Main
  49. manifest.file=manifest.mf
  50. meta.inf.dir=${src.dir}/META-INF
  51. platform.active=default_platform
  52. run.classpath=\
  53. ${javac.classpath}:\
  54. ${build.classes.dir}
  55. # Space-separated list of JVM arguments used when running the project
  56. # (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value
  57. # or test-sys-prop.name=value to set system properties for unit tests):
  58. run.jvmargs=
  59. run.test.classpath=\
  60. ${javac.test.classpath}:\
  61. ${build.test.classes.dir}
  62. source.encoding=UTF-8
  63. src.dir=src
  64. test.src.dir=test