# Licensed to the Apache Software Foundation (ASF) under one # or more contributor license agreements. See the NOTICE file # distributed with this work for additional information # regarding copyright ownership. The ASF licenses this file # to you under the Apache License, Version 2.0 (the # "License"); you may not use this file except in compliance # with the License. You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 # # Unless required by applicable law or agreed to in writing, # software distributed under the License is distributed on an # "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY # KIND, either express or implied. See the License for the # specific language governing permissions and limitations # under the License. # # This file is used by build.xml # # Global defaults name= Anakia project= anakia version= 1.0 final.name= ${project}-${version} root.package= org.apache.anakia # compile switches debug= on optimize= on deprecation= off ant.build.dir= build build.dir= ${app.dir}/bin # The source tree runs through a filter copy task to # allow substitution of version, date etc. and will # end up in build.src build.lib= ${build.dir}/lib build.test.lib= ${build.dir}/test-lib build.dest= ${build.dir}/classes build.test.dest= ${build.dir}/test-classes build.javadoc= ${build.dir}/apidocs build.test= ${build.dir}/test build.docs= ${build.dir}/docs # Various local pathes in the distribution src.java.dir= ${app.dir}/src/java test.java.dir= ${app.dir}/src/test test.dir= ${app.dir}/test example.dir= ${app.dir}/examples xdocs.dir= ${app.dir}/xdocs # Running the tests test.haltonerror= true test.haltonfailure= true # Building the distribution dist.root= ${build.dir}/dist dist.dir= ${dist.root}/${final.name} # Set to Sun Javadocs javadocs.ref.jsdk= http://java.sun.com/j2se/1.4.2/docs/api/ # for the javadoc javadoc.packagenames = ${root.package}.* # attributes for the jar manifest mf.package = ${root.package} mf.extension.name = ${project} mf.specification.title = Anakia is a XML-based text processor mf.specification.vendor = Apache Software Foundation mf.implementation.title = ${mf.package} mf.implementation.vendor.id = org.apache mf.implementation.vendor = Apache Software Foundation mf.implementation.version = ${version} # ####################################################################### # # Downloading jars from ibiblio repository # # ####################################################################### # The default behaviour is to download dependency jars only when # they are not already present. # Set skip.jar.loading to true to never download any dependency jar, # or force.jar.loading to true to always download all dependency jars. skip.jar.loading= false force.jar.loading= false # # Settings for the proxy to use for download. Change this if you must # use a proxy from your host. If the proxy.host property is unset, no # proxy is used. proxy.host= proxy.port= 80 # # We download directly from the ibiblio maven repository repo.url= http://www.ibiblio.org/maven # # Jars to be downloaded jar.antlr.version= 2.7.5 jar.commons-collections.version= 3.1 jar.commons-lang.version= 2.1 jar.jdom.version= 1.0 jar.werken-xpath.version= 0.9.4 jar.junit.version= 3.8.1 jar.velocity.version= 1.5