-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathbuild.properties
172 lines (110 loc) · 6.09 KB
/
build.properties
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
171
172
# Create a Library for the Processing open source programming language and
# environment (http://processing.org/)
#
# Customize the build properties to make the ant-build-process work for your
# environment. How? Please read the comments below.
#
# The default properties are set for OS X. Please refer to comments for Windows
# settings.
# Where is your Processing sketchbook located?
# If you are not sure, check the sketchbook location in your Processing
# application preferences.
# ${user.home} points the compiler to your home directory.
# For windows the default path to your sketchbook would be
# ${user.home}/My Documents/Processing (make adjustments below)
#sketchbook.location=${user.home}/My Documents/Processing
sketchbook.location=${user.home}/Documents/Processing
# Where are the jar files located that are required for compiling your Library
# such as e.g. core.jar?
# By default, the local classpath location points to folder libs inside Eclipse's
# workspace (by default found in your home directory).
# For Windows, the default path would be
# ${user.home}/Documents/workspace/libs (make adjustments below)
# For OS X,the following path will direct you into Processing's application
# package, in case you put Processing inside your Applications folder.
#classpath.local.location=${user.home}/Documents/workspace/libs
#classpath.local.location=/Applications/Processing.app/Contents/Java/core/library
classpath.local.location=C:/Program Files (x86)/processing/core/library
# Add all jar files that are required for compiling your project to the local
# and project classpath. Use a comma as delimiter. These jar files must be
# inside your classpath.local.location folder.
classpath.local.include=core.jar
# Add Processing's libraries folder to the classpath.
# If you don't need to include the libraries folder to your classpath, comment
# out the following line.
classpath.libraries.location=${sketchbook.location}/libraries
# Set the java version that should be used to compile your Library.
java.target.version=1.8
# Set the description of the Ant build.xml file.
ant.description=Processing Library Ant build file.
# Give your Library a name. The name must not contain spaces or special
# characters.
project.name=Green
# The name as the user will see it. This can contain spaces and special
# characters.
project.prettyName=Green
# Use 'normal' or 'fast' as value for project.compile.
# 'fast' will only compile the project into your sketchbook.
# 'normal' will compile the distribution including the javadoc-reference and all
# web-files (the compile process here takes longer).
# All files compiled with project.compile=normal are stored in the distribution
# folder.
project.compile=normal
# Set your name and URL, used for the web page and properties file.
author.name=Zacchary Dempsey-Plante
author.url=https://ztdp.ca/
# Set the web page for your Library.
# This is NOT a direct link to where to download it.
library.url=https://ztdp.ca/projects/school/Green
# Set the category (or categories) of your Library from the following list:
# "3D" "Animation" "Compilations" "Data"
# "Fabrication" "Geometry" "GUI" "Hardware"
# "I/O" "Language" "Math" "Simulation"
# "Sound" "Utilities" "Typography" "Video & Vision"
#
# If a value other than those listed is used, your Library will list as
# "Other". Many categories must be comma-separated.
library.categories=Animation,GUI
# A short sentence (or fragment) to summarize the Library's function. This will
# be shown from inside the PDE when the Library is being installed. Avoid
# repeating the name of your Library here. Also, avoid saying anything redundant
# like mentioning that it's a Library. This should start with a capitalized
# letter, and end with a period.
library.sentence=Easy, simple 2D game creation within Processing.
# Additional information suitable for the Processing website. The value of
# 'sentence' will always be prepended, so you should start by writing the
# second sentence here. If your Library only works on certain operating systems,
# mention it here.
library.paragraph=Developed with a focus on ease-of-use and learning. Originally made to aid in teaching high school students, emulating and expanding upon the functionality of the [Greenfoot](https://www.greenfoot.org/) project.
# Set the source code repository for your project.
# We recommend Bitbucket (https://bitbucket.org) or GitHub (https://github.com).
source.host=GitHub
source.url=https://github.com/zedseven/Green
source.repository=https://github.com/zedseven/Green.git
# The current version of your Library.
# This number must be parsable as an int. It increments once with each release.
# This is used to compare different versions of the same Library, and check if
# an update is available.
library.version=9
# The version as the user will see it.
library.prettyVersion=1.1.3
# The min and max revision of Processing compatible with your Library.
# Note that these fields use the revision and not the version of Processing,
# parsable as an int. For example, the revision number for 2.2.1 is 227.
# You can find the revision numbers in the change log: https://raw.githubusercontent.com/processing/processing/master/build/shared/revisions.txt
# Only use maxRevision (or minRevision), when your Library is known to
# break in a later (or earlier) release. Otherwise, use the default value 0.
compatible.minRevision=0
compatible.maxRevision=0
# The platforms and Processing version that the Library has been tested
# against. This information is only used in the generated webpage.
tested.platform=windows
tested.processingVersion=4.0b3
# Additional information for the generated webpage.
library.copyright=© 2018-2022 Zacchary Dempsey-Plante
library.dependencies=?
library.keywords=processing,greenfoot,games,game-development,learning,education
# Include javadoc references into your project's javadocs.
#javadoc.java.href=https://docs.oracle.com/javase/7/docs/api/
javadoc.java.href=https://docs.oracle.com/javase/8/docs/api/
javadoc.processing.href=https://processing.github.io/processing-javadocs/core/