|
| 1 | +# Create a Tool for the Processing open source programming language and |
| 2 | +# environment (http://www.processing.org) |
| 3 | +# |
| 4 | +# Customize the build properties to make the ant-build-process work for your |
| 5 | +# environment. How? Please read the comments below. |
| 6 | +# |
| 7 | +# The default properties are set for OS X. Please refer to comments for Windows |
| 8 | +# settings. |
| 9 | + |
| 10 | + |
| 11 | +# Where is your Processing sketchbook located? |
| 12 | +# If you are not sure, check the sketchbook location in your Processing |
| 13 | +# application preferences. |
| 14 | +# ${user.home} points the compiler to your home directory. |
| 15 | +# For windows the default path to your sketchbook would be |
| 16 | +# ${user.home}/My Documents/Processing (make adjustments below). |
| 17 | + |
| 18 | +#sketchbook.location=${user.home}/My Documents/Processing |
| 19 | +sketchbook.location=${user.home}/Documents/Processing |
| 20 | + |
| 21 | + |
| 22 | +# Where are the jar files located that are required for compiling your Tool such |
| 23 | +# as e.g. core.jar? |
| 24 | +# By default the local classpath location points to folder libs inside Eclipse's |
| 25 | +# workspace (by default found in your home directory). |
| 26 | +# For Windows, the default path would be |
| 27 | +# ${user.home}/Documents/workspace/libs (make adjustments below) |
| 28 | +# For OS X,the following path will direct you into Processing's application |
| 29 | +# package, in case you put Processing inside your Applications folder. |
| 30 | + |
| 31 | +#classpath.local.location=${user.home}/Documents/workspace/libs |
| 32 | +classpath.local.location=/Applications/Processing.app/Contents/Java |
| 33 | + |
| 34 | + |
| 35 | +# Add all jar files that are required for compiling your project to the local |
| 36 | +# and project classpath. Use a comma as delimiter. These jar files must be |
| 37 | +# inside your classpath.local.location folder. |
| 38 | +# For creating a Tool, both pde.jar and core.jar are required. |
| 39 | + |
| 40 | +classpath.local.include=core.jar,pde.jar |
| 41 | + |
| 42 | + |
| 43 | +# Add Processing's libraries folder to the classpath. |
| 44 | +# If you don't need to include the libraries folder to your classpath, comment |
| 45 | +# out the following line. |
| 46 | + |
| 47 | +classpath.libraries.location=${sketchbook.location}/libraries |
| 48 | + |
| 49 | + |
| 50 | +# Set the java version that should be used to compile your Tool. |
| 51 | + |
| 52 | +java.target.version=1.8 |
| 53 | + |
| 54 | + |
| 55 | +# Set the description of the Ant build.xml file. |
| 56 | + |
| 57 | +ant.description=Processing Tool Ant build file. |
| 58 | + |
| 59 | + |
| 60 | +# Give your Tool a name. The name must not contain spaces or special characters. |
| 61 | +# When creating a tool, the name of the main class which implements Tool must be |
| 62 | +# the same as the value defined for project.name in your build.properties. |
| 63 | + |
| 64 | +project.name=JavaDoc |
| 65 | + |
| 66 | + |
| 67 | +# The name as the user will see it. This can contain spaces and special |
| 68 | +# characters. |
| 69 | + |
| 70 | +project.prettyName=JavaDoc |
| 71 | + |
| 72 | + |
| 73 | +# Use 'normal' or 'fast' as value for project.compile. |
| 74 | +# 'fast' will only compile the project into your sketchbook. |
| 75 | +# 'normal' will compile the distribution including the javadoc-reference and all |
| 76 | +# web-files (the compile process here takes longer). |
| 77 | +# All files compiled with project.compile=normal are stored |
| 78 | +# in the distribution folder. |
| 79 | + |
| 80 | +project.compile=normal |
| 81 | + |
| 82 | + |
| 83 | +# Set your name and URL, used for the web page and properties file. |
| 84 | + |
| 85 | +author.name=Henning Kiel |
| 86 | +author.url=https://github.com/hkiel |
| 87 | + |
| 88 | + |
| 89 | +# Set the web page for your Tool. |
| 90 | +# This is NOT a direct link to where to download it. |
| 91 | + |
| 92 | +tool.url=https://github.com/hkiel/JavaDoc |
| 93 | + |
| 94 | + |
| 95 | +# Set the category (or categories) of your Tool from the following list: |
| 96 | +# "3D" "Animation" "Compilations" "Data" |
| 97 | +# "Fabrication" "Geometry" "GUI" "Hardware" |
| 98 | +# "I/O" "Language" "Math" "Simulation" |
| 99 | +# "Sound" "Utilities" "Typography" "Video & Vision" |
| 100 | +# |
| 101 | +# If a value other than those listed is used, your library will listed as |
| 102 | +# "Other". Many categories must be comma-separated. |
| 103 | + |
| 104 | +tool.categories=Utilities |
| 105 | + |
| 106 | + |
| 107 | +# A short sentence (or fragment) to summarize the Tool's function. This will be |
| 108 | +# shown from inside the PDE when the Tool is being installed. Avoid repeating |
| 109 | +# the name of your Tool here. Also, avoid saying anything redundant like |
| 110 | +# mentioning that it's a Tool. This should start with a capitalized letter, and |
| 111 | +# end with a period. |
| 112 | + |
| 113 | +tool.sentence=Generate JavaDoc for sketch. |
| 114 | + |
| 115 | + |
| 116 | +# Additional information suitable for the Processing website. The value of |
| 117 | +# 'sentence' always will be prepended, so you should start by writing the |
| 118 | +# second sentence here. If your Tool only works on certain operating systems, |
| 119 | +# mention it here. |
| 120 | + |
| 121 | +tool.paragraph= |
| 122 | + |
| 123 | + |
| 124 | +# Set the source code repository for your project. |
| 125 | +# We recommend Bitbucket (https://bitbucket.org) or GitHub (https://github.com). |
| 126 | + |
| 127 | +source.host=GitHub |
| 128 | +source.url=https://github.com/hkiel/JavaDoc |
| 129 | +source.repository=https://github.com/hkiel/JavaDoc.git |
| 130 | + |
| 131 | + |
| 132 | +# The current version of your Tool. |
| 133 | +# This number must be parsable as an int. It increments once with each release. |
| 134 | +# This is used to compare different versions of the same Tool, and check if an |
| 135 | +# update is available. |
| 136 | + |
| 137 | +tool.version=1 |
| 138 | + |
| 139 | + |
| 140 | +# The version as the user will see it. |
| 141 | + |
| 142 | +tool.prettyVersion=1.0.0 |
| 143 | + |
| 144 | + |
| 145 | +# The min and max revision of Processing compatible with your Tool. |
| 146 | +# Note that these fields use the revision and not the version of Processing, |
| 147 | +# parsable as an int. For example, the revision number for 2.2.1 is 227. |
| 148 | +# You can find the revision numbers in the change log: https://raw.githubusercontent.com/processing/processing/master/build/shared/revisions.txt |
| 149 | +# Only use maxRevision (or minRevision), when your Tool is known to break in a |
| 150 | +# later (or earlier) release. Otherwise, use the default value 0. |
| 151 | + |
| 152 | +compatible.minRevision=0 |
| 153 | +compatible.maxRevision=0 |
| 154 | + |
| 155 | + |
| 156 | +# The platforms and Processing version that the Tool has been tested |
| 157 | +# against. This information is only used in the generated webpage. |
| 158 | + |
| 159 | +tested.platform=osx,windows |
| 160 | +tested.processingVersion=4.1.1 |
| 161 | + |
| 162 | + |
| 163 | +# Additional information for the generated webpage. |
| 164 | + |
| 165 | +tool.copyright=(c) 2022 |
| 166 | +tool.dependencies=? |
| 167 | +tool.keywords=javadoc |
| 168 | + |
| 169 | + |
| 170 | +# Include javadoc references into your project's javadocs. |
| 171 | + |
| 172 | +javadoc.java.href=http://docs.oracle.com/javase/8/docs/api/ |
| 173 | +javadoc.processing.href=http://processing.org/reference/ |
0 commit comments