1 #
   2 # Copyright (c) 2009, Oracle and/or its affiliates. All rights reserved.
   3 # DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
   4 #
   5 # This code is free software; you can redistribute it and/or modify it
   6 # under the terms of the GNU General Public License version 2 only, as
   7 # published by the Free Software Foundation.  Oracle designates this
   8 # particular file as subject to the "Classpath" exception as provided
   9 # by Oracle in the LICENSE file that accompanied this code.
  10 #
  11 # This code is distributed in the hope that it will be useful, but WITHOUT
  12 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  13 # FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
  14 # version 2 for more details (a copy is included in the LICENSE file that
  15 # accompanied this code).
  16 #
  17 # You should have received a copy of the GNU General Public License version
  18 # 2 along with this work; if not, write to the Free Software Foundation,
  19 # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
  20 #
  21 # Please contact Oracle, 500 Oracle Parkway, Redwood Shores, CA 94065 USA
  22 # or visit www.oracle.com if you need additional information or have any
  23 # questions.
  24 #
  25 
  26 annotation.processing.enabled=true
  27 annotation.processing.enabled.in.editor=false
  28 annotation.processing.run.all.processors=true
  29 application.title=classanalyzer
  30 application.vendor=mchung
  31 build.classes.dir=${build.dir}/classes
  32 build.classes.excludes=**/*.java,**/*.form
  33 
  34 # This directory is removed when the project is cleaned:
  35 build.dir=build
  36 build.generated.dir=${build.dir}/generated
  37 build.generated.sources.dir=${build.dir}/generated-sources
  38 
  39 # Only compile against the classpath explicitly listed here:
  40 build.sysclasspath=ignore
  41 build.test.classes.dir=${build.dir}/test/classes
  42 build.test.results.dir=${build.dir}/test/results
  43 
  44 cp.extra=${tools.jar} 
  45 
  46 debug.classpath=\
  47     ${run.classpath}
  48 debug.test.classpath=\
  49     ${run.test.classpath}
  50 
  51 # This directory is removed when the project is cleaned:
  52 dist.dir=dist
  53 dist.jar=${dist.dir}/classanalyzer.jar
  54 dist.javadoc.dir=${dist.dir}/javadoc
  55 
  56 endorsed.classpath=
  57 excludes=
  58 
  59 file.reference.tools-src=src
  60 file.reference.tools.jar=${jdk.home}/lib/tools.jar
  61 includes=**
  62 jar.compress=false
  63 javac.classpath=\
  64     ${file.reference.tools.jar}
  65 javac.deprecation=false
  66 javac.processorpath=\
  67     ${javac.classpath}
  68 javac.source=1.6
  69 javac.target=1.6
  70 javac.test.classpath=
  71 javadoc.author=false
  72 javadoc.noindex=false
  73 javadoc.nonavbar=false
  74 javadoc.notree=false
  75 javadoc.private=false
  76 javadoc.splitindex=false
  77 javadoc.use=false
  78 javadoc.version=false
  79 main.class=com.sun.classanalyzer.ClassAnalyzer
  80 manifest.file=manifest.mf
  81 meta.inf.dir=${src.dir}/META-INF
  82 platform.active=JDK7
  83 run.classpath=\
  84     ${javac.classpath}:\
  85     ${build.classes.dir}
  86 # Space-separated list of JVM arguments used when running the project
  87 # (you may also define separate properties like run-sys-prop.name=value instead of -Dname=value
  88 # or test-sys-prop.name=value to set system properties for unit tests):
  89 run.jvmargs=-Xmx896m -Xms128m 
  90 run.test.classpath=
  91 source.encoding=UTF-8
  92 src.dir=${file.reference.tools-src}