1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146
  
     | 
    
      ##########################################################
# General Build Related Directories                      #
##########################################################
# This directory is removed when the project is cleaned:
build.dir=build
build.generated.dir=${build.dir}/generated
build.classes.dir=${build.dir}/classes
build.beaninfo.classes.dir=${build.dir}/beaninfo/classes
build.test.classes.dir=${build.dir}/test/classes
build.test.results.dir=${build.dir}/test/results
# This directory is removed when the project is cleaned:
dist.dir=dist
dist.jar=${dist.dir}/swingx.jar
dist.beaninfo.jar=${dist.dir}/swingx-beaninfo.jar
dist.javadoc.dir=${dist.dir}/javadoc
########################h##################################
# Source and test directories                            #
##########################################################
java.dir=${file.reference.src-java}
# Property libs.swing-layout.classpath is set here just to make sharing of project simpler.
# The library definition has always preference over this property.
libs.swing-layout.classpath=../../../../../Applications/NetBeans 6.app/Contents/Resources/NetBeans/platform7/modules/ext/swing-layout-1.0.1.jar
src.beaninfo.dir=src/beaninfo
src.demo.dir=src/demo
test.test.dir=src/test
##########################################################
# Library references                                     #
##########################################################
file.reference.jmock-1.1.0RC1.jar=lib/jmock-1.1.0RC1.jar
file.reference.MultipleGradientPaint.jar=lib/optional/MultipleGradientPaint.jar
file.reference.src-java=src/java
file.reference.src-test=src/test
file.reference.swing-worker.jar=lib/optional/swing-worker.jar
file.reference.Filters.jar=lib/optional/Filters.jar
file.reference.commons.lang.jar=lib/build-only/commons-lang-2.4.jar
file.reference.commons.collections.jar=lib/build-only/commons-collections-3.2.1.jar
##########################################################
# Build, test, debug, etc Classpaths                     #
##########################################################
debug.classpath=\
    ${run.classpath}
debug.test.classpath=\
    ${run.test.classpath}
javac.classpath=\
    ${file.reference.MultipleGradientPaint.jar}:\
    ${file.reference.swing-worker.jar}:\
    ${file.reference.Filters.jar}
javac.test.classpath=\
    ${javac.classpath}:\
    ${build.classes.dir}:\
    ${libs.junit.classpath}:\
    ${file.reference.jmock-1.1.0RC1.jar}:\
    ${file.reference.commons.collections.jar}:\
    ${file.reference.commons.lang.jar}
run.classpath=\
    ${javac.classpath}:\
    ${build.classes.dir}
run.test.classpath=\
    ${javac.test.classpath}:\
    ${build.test.classes.dir}:\
    ${file.reference.commons.collections.jar}:\
    ${file.reference.commons.lang.jar}
javadoc.srcpath=\
    ${src.beaninfo.dir}:\
    ${java.dir}:\
    ${javadoc.core.src}
##########################################################
# General Properties and Command Switches                #
##########################################################
#####
# Build Related Properties
#####
build.classes.excludes=**/*.java,**/*.form
# Only compile against the classpath explicitly listed here:
build.sysclasspath=ignore
jar.compress=true
manifest.file=manifest.mf
meta.inf.dir=${src.dir}/META-INF
platform.active=default_platform
#####
# Javac Options
#####
# Space-separated list of extra javac options
javac.compilerargs=
javac.deprecation=false
javac.source=1.5
javac.target=1.5
#####
# Javadoc Options
#####
javadoc.additionalparam=
javadoc.author=false
javadoc.encoding=
javadoc.noindex=false
javadoc.nonavbar=false
javadoc.notree=false
javadoc.private=false
javadoc.splitindex=true
javadoc.use=true
javadoc.version=false
javadoc.verbose=false
javadoc.windowtitle=SwingLabs JavaDoc
javadoc.compress=true
#####
# Properties for a "main class" and running that class.
# These are generally not used in SwingX
#####
main.class=org.jdesktop.swingx.painter.demo.PainterDemoSet
application.args=
# Space-separated list of JVM arguments used when running the project
# (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value
# or test-sys-prop.name=value to set system properties for unit tests):
run.jvmargs=
##########################################################
# Properties for the swinglabs-build-impl ANT script     #
##########################################################
# directory that contains emma.jar and emma_ant.jar
emma.dir=lib/build-only
emma.report.srcpath=\
    ${src.beaninfo.dir}:\
    ${java.dir}
# directory to place the built bundles
dist.bundles.dir=${dist.dir}/bundles
# scratch directory to use for building the bundles
build.bundles.dir=${build.dir}/bundles
# Colon separated list of directories to include as the "docs" (readme, etc) for the bundle
bundles.doc.dir=docs
# The name of the project, used when creating the bundles
projectname=swingx
# Info for updating the posted.txt file
posted.txt=
build.branch=MAIN
# Location of the demo-taglet jar file
demo.taglet.jar=lib/build-only/demo-taglet.jar
 
     |