|
122 | 122 | <!-- Libraries need to execute the annotation processor --> |
123 | 123 | <pathelement location="${lib.annotations}/jsfa-proc.jar"/> |
124 | 124 | <pathelement location="${lib.annotations}/velocity-1.4.jar"/> |
125 | | - <pathelement location="${lib.annotations}/velocity-dep-1.4.jar"/> |
| 125 | + <pathelement location="${lib.annotations}/velocity-engine-core-2.0.jar"/> |
| 126 | + <pathelement location="${lib.annotations}/slf4j-api-1.7.25.jar"/> |
| 127 | + <pathelement location="${lib.annotations}/commons-lang3-3.5.jar"/> |
126 | 128 | </path> |
127 | 129 |
|
128 | 130 | <path id="annotation-classpath"> |
|
201 | 203 |
|
202 | 204 | <path id="propertyeditors.jars"> |
203 | 205 | <pathelement location="${lib.creator}/com-sun-rave-propertyeditors.jar"/> |
204 | | - <pathelement location="${lib.netbeans}/openide.jar"/> |
| 206 | + <pathelement location="${lib.netbeans}/org-openide-explorer-RELEASE82.jar"/> |
| 207 | + <pathelement location="${lib.netbeans}/org-openide-util-RELEASE802.jar"/> |
205 | 208 | <pathelement location="${lib.netbeans}/openide-loaders.jar"/> |
206 | 209 | </path> |
207 | 210 |
|
|
213 | 216 | <pathelement location="${lib.external}/json.jar"/> |
214 | 217 | </path> |
215 | 218 |
|
216 | | - |
217 | 219 | <!-- Build targets --> |
218 | 220 |
|
219 | 221 | <target name="process-runtime-annotations"> |
|
241 | 243 | </target> |
242 | 244 |
|
243 | 245 | <target name="process-annotations" unless="annotations-uptodate"> |
| 246 | + <get src="http://central.maven.org/maven2/org/apache/velocity/velocity-engine-core/2.0/velocity-engine-core-2.0.jar" |
| 247 | + dest="${lib.annotations}/velocity-engine-core-2.0.jar" usetimestamp="true"/> |
| 248 | + <get src="http://central.maven.org/maven2/org/slf4j/slf4j-api/1.7.25/slf4j-api-1.7.25.jar" dest="${lib.annotations}/slf4j-api-1.7.25.jar" usetimestamp="true"/> |
| 249 | + <get src="http://central.maven.org/maven2/org/apache/commons/commons-lang3/3.5/commons-lang3-3.5.jar" |
| 250 | + dest="${lib.annotations}/commons-lang3-3.5.jar" usetimestamp="true"/> |
| 251 | + <get src="http://bits.netbeans.org/maven2/org/netbeans/api/org-openide-util/RELEASE802/org-openide-util-RELEASE802.jar" |
| 252 | + dest="${lib.netbeans}/org-openide-util-RELEASE802.jar" usetimestamp="true"/> |
| 253 | + <get src="http://bits.netbeans.org/maven2/org/netbeans/api/org-openide-explorer/RELEASE82/org-openide-explorer-RELEASE82.jar" |
| 254 | + dest="${lib.netbeans}/org-openide-explorer-RELEASE82.jar" usetimestamp="true"/> |
244 | 255 | <pathconvert property="apt.classpath"> |
245 | 256 | <path refid="annotation-classpath"/> |
246 | 257 | </pathconvert> |
|
269 | 280 | </target> |
270 | 281 |
|
271 | 282 | <target name="compile-all-runtime" depends="compile-precopy-runtime"> |
| 283 | + <get src="http://central.maven.org/maven2/org/json/json/20090211/json-20090211.jar" dest="${lib.external}/json.jar" usetimestamp="true"/> |
| 284 | + <get src="http://central.maven.org/maven2/commons-collections/commons-collections/3.2.1/commons-collections-3.2.1.jar" |
| 285 | + dest="${lib.external}/commons-collections.jar" usetimestamp="true"/> |
| 286 | + <get src="http://central.maven.org/maven2/commons-logging/commons-logging/1.0.4/commons-logging-1.0.4.jar" |
| 287 | + dest="${lib.external}/commons-logging.jar" usetimestamp="true"/> |
| 288 | + <get src="http://central.maven.org/maven2/commons-beanutils/commons-beanutils/1.6/commons-beanutils-1.6.jar" |
| 289 | + dest="${lib.external}/commons-beanutils.jar" usetimestamp="true"/> |
| 290 | + <get src="http://central.maven.org/maven2/commons-fileupload/commons-fileupload/1.0/commons-fileupload-1.0.jar" |
| 291 | + dest="${lib.external}/commons-fileupload-1.0.jar" usetimestamp="true"/> |
| 292 | + <get src="http://central.maven.org/maven2/commons-digester/commons-digester/2.1/commons-digester-2.1.jar" |
| 293 | + dest="${lib.external}/commons-digester.jar" usetimestamp="true"/> |
272 | 294 | <javac srcdir="${runtime}:${gen}/taglib" |
273 | 295 | destdir="${classes}/runtime" deprecation="false" |
274 | 296 | debug="${debug}" |
|
301 | 323 | </target> |
302 | 324 |
|
303 | 325 | <target name="compile-all-designtime" depends="runtime-jars,compile-precopy-designtime"> |
304 | | - |
305 | 326 | <javac srcdir="${designtime}:${gen}/beaninfo" |
306 | 327 | destdir="${classes}/designtime" deprecation="false" |
307 | 328 | debug="${debug}" |
|
0 commit comments