| 1 | <?xml version="1.0"?> |
|---|
| 2 | <!-- |
|---|
| 3 | $Id$ |
|---|
| 4 | |
|---|
| 5 | Copyright 2006, The jCoderZ.org Project. All rights reserved. |
|---|
| 6 | |
|---|
| 7 | Redistribution and use in source and binary forms, with or without |
|---|
| 8 | modification, are permitted provided that the following conditions are |
|---|
| 9 | met: |
|---|
| 10 | |
|---|
| 11 | * Redistributions of source code must retain the above copyright |
|---|
| 12 | notice, this list of conditions and the following disclaimer. |
|---|
| 13 | * Redistributions in binary form must reproduce the above |
|---|
| 14 | copyright notice, this list of conditions and the following |
|---|
| 15 | disclaimer in the documentation and/or other materials |
|---|
| 16 | provided with the distribution. |
|---|
| 17 | * Neither the name of the jCoderZ.org Project nor the names of |
|---|
| 18 | its contributors may be used to endorse or promote products |
|---|
| 19 | derived from this software without specific prior written |
|---|
| 20 | permission. |
|---|
| 21 | |
|---|
| 22 | THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS "AS IS" AND |
|---|
| 23 | ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE |
|---|
| 24 | IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR |
|---|
| 25 | PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS AND CONTRIBUTORS |
|---|
| 26 | BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR |
|---|
| 27 | CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF |
|---|
| 28 | SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR |
|---|
| 29 | BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, |
|---|
| 30 | WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR |
|---|
| 31 | OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF |
|---|
| 32 | ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
|---|
| 33 | --> |
|---|
| 34 | <project name="fawkeZ-properties"> |
|---|
| 35 | <!--================================================================== |
|---|
| 36 | |
|---|
| 37 | NOTE: Never edit this file, it is better to define userspecific |
|---|
| 38 | settings in a local file: |
|---|
| 39 | |
|---|
| 40 | ${base.dir}/config/${user.name}.properties |
|---|
| 41 | |
|---|
| 42 | ===================================================================--> |
|---|
| 43 | <property environment="env"/> |
|---|
| 44 | |
|---|
| 45 | <!-- Name settings --> |
|---|
| 46 | <property name="Name" value="fawkeZ" /> |
|---|
| 47 | <property name="name" value="fawkez" /> |
|---|
| 48 | <property name="copyright.year" value="2007" /> |
|---|
| 49 | <property name="project.package" value="org.jcoderz.commons" /> |
|---|
| 50 | <property name="project.package.path" value="org/jcoderz/commons" /> |
|---|
| 51 | |
|---|
| 52 | <property name="base.dir" value="${basedir}"/> |
|---|
| 53 | <property name="build.dir" value="${base.dir}/build"/> |
|---|
| 54 | <property name="dist.dir" value="${base.dir}/dist"/> |
|---|
| 55 | |
|---|
| 56 | <property file="${base.dir}/VERSION"/> |
|---|
| 57 | |
|---|
| 58 | <!-- Give user a chance to override without editing this file |
|---|
| 59 | (and without typing -D each time it compiles it) --> |
|---|
| 60 | <property file="${base.dir}/config/${user.name}.properties"/> |
|---|
| 61 | |
|---|
| 62 | <property name="local.artifact.root" value="${user.home}/local-artifacts"/> |
|---|
| 63 | |
|---|
| 64 | <property name="build.debug" value="false"/> |
|---|
| 65 | |
|---|
| 66 | </project> |
|---|