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 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170
|
# Default properties for plugin-build.xml
# Uncomment properties and set to desired values.
# Save to a file named build.properties in one of these locations:
# - The plugin's main directory (e.g., "plugins/XML/build.properties")
# - The plugin's parent directory (e.g., "plugins/build.properties")
# - Your home directory (with or without a leading dot)
# jEdit & plugins directory settings
# jEdit install directory
#jedit.install.dir=../../jEdit
# location where your jars are installed
#install.dir=${jedit.install.dir}/jars
# Location where the plugins are. This property used when defining dependencies on other plugins.
# Eg. In your plugin's classpath.
# <path id="project.class.path">
# <pathelement location="${jedit.plugins.dir}/ErrorList.jar" />
# </path>
#jedit.plugins.dir=${install.dir}
# Location to find built jars (for dependencies)
#jedit.jars.dir=${install.dir}
# User settings directory
#jedit.user.home=${user.home}/.jedit
# Top-level of the plugins source tree
#plugins.srcdir=..
# Generic plugin build options
# Where the plugin source is located
#src.dir=.
# The name of the JAR file
#jar.file=${ant.project.name}.jar
# The name of the source ZIP file
#src.zip.file=${ant.project.name}.zip
# The target run when running dist
#dist.target=dist.nojavadoc
# Where to put temporary build files
#build.dir=build
# Where to put compiled classes
#build.classes=${build.dir}/classes
# Where to put generated documentation
#build.docs=${build.dir}/docs
# Where to put generated javadoc
#build.javadoc=${build.docs}/javadoc
# Where to put other files
#build.extras=${build.dir}/extras
# Default compiler flags
# Generate debugging code
#compiler.debug=off
#compiler.debuglevel=lines,vars,source
# Generate optimized code
#compiler.optimize=off
# Deprecation warnings.
#compiler.deprecation=off
# Verbose compiler messages
#compiler.verbose=off
# Disable compiler warnings
#compiler.nowarn=off
# Target JVM version
#compiler.target=1.4
# Java version of the source files
#compiler.source=1.4
# List files being compiled
#compiler.listfiles=no
# Fork the javac compiler
#compiler.fork=no
# Location for rt.jar and ext dir. By default, these are set to the
# appropriate value for the running jvm. These are necessary, for example,
# when compiling a Java 1.5 compatible plugin while running Java 1.6.
#compiler.bootclasspath=${java.home}/lib/rt.jar
#compiler.extdirs=${java.ext.dirs}
# Documentation build options
# What target to use for the docs
#docs-proc.target=xsltproc
# Stylesheet file to use
#user-doc.xsl=${build.support}/users-guide.xsl
# Documentation docbook source
#user-doc.xml=${basedir}/docs/users-guide.xml
# Documentation output file
#user-doc.out=${build.docs}/index.html
# Title for javadoc documentation
#javadoc.title=${ant.project.name} API
# If xsltproc is in your path, uncomment this:
#xsltproc.executable=xsltproc
# You can specify the absolute path of the win32 or cygwin binary
# (from the "libxslt" package) of xsltproc here:
#xsltproc.executable=C:/ppApps/xsltproc/xsltproc.exe
### For generating the docs, adjust the following to your local paths
### For xsltproc to work, the path to the DocBook stuff MUST NOT contain spaces!
# cygwin "docbook-xml44" and "docbook-xsl" packages
# can be used to install docbook-xml and docbook-dtd
# (example windows locations):
#docbook.catalog=c:/cygwin/usr/share/xml/docbook/4.4/docbook.cat
#docbook.xsl=c:/cygwin/usr/share/docbook-xsl
# Debian location
#docbook.xsl=/usr/share/xml/docbook/stylesheet/nwalsh
#docbook.catalog=/usr/share/xml/docbook/schema/dtd/4.4/docbook.cat
# Fink (Mac OS/X) location
#docbook.catalog=/sw/share/xml/dtd/docbookx/4.4.0/docbook.cat
#docbook.xsl=/sw/share/xml/xsl/docbook-xsl
# The name of the xsl stylesheet (without the path info)
#docbook.xsl.sheet=html/chunk.xsl
# The path to the style sheet to use.
#docs.style.sheet=${docbook.xsl}/${docbook.xsl.sheet}
# The path to the xsltproc executable
#xsltproc.executable=C:\\Programme\\xsltproc\\xsltproc.exe
# JUnit options
# Where to find jUnit
#junit.jar=junit.jar
# The name of the jUnit Testcase
#junit.testcase=${ant.project.name}TestSuite
# Whether to print a summary
#junit.printsummary=on
# Whether to halt if an error occurs
#junit.haltonfailure=off
# Ant Contrib
# Where to find the ant-contrib jar.
#ant-contrib.jar=ant-contrib-1.0b1.jar
# Where to find the findbugs lib dir.
#findbugs.lib.dir=<findbugs-install-dir>/lib
|