|
Revision 5, 468 bytes
(checked in by omry, 4 years ago)
|
|
|
-
Property svn:mime-type set to
text/plain
|
| Line | |
|---|
| 1 | # Compile with debug info? |
|---|
| 2 | javac.debug=on |
|---|
| 3 | |
|---|
| 4 | # If javac.debug is on/yes/true, what debug level should be used? |
|---|
| 5 | javac.debug.level=lines,vars,source |
|---|
| 6 | |
|---|
| 7 | # generated classes version |
|---|
| 8 | javac.target=1.6 |
|---|
| 9 | |
|---|
| 10 | # source version |
|---|
| 11 | javac.source=1.6 |
|---|
| 12 | |
|---|
| 13 | # Wordspace directory |
|---|
| 14 | workspace=../ |
|---|
| 15 | |
|---|
| 16 | # jar name (can be overriden in build.properties) |
|---|
| 17 | jar.name=${project}.jar |
|---|
| 18 | |
|---|
| 19 | # archive zip name (can be overriden in build.properties) |
|---|
| 20 | zip.name=${project}.zip |
|---|
| 21 | |
|---|
| 22 | #build directory (relative) |
|---|
| 23 | build.dir = build |
|---|