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

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