X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=utils%2Fjalopy%2Fdocs%2Fplugin-ant.html;fp=utils%2Fjalopy%2Fdocs%2Fplugin-ant.html;h=e964a08af749955f592733db88dbc5040f2a6665;hb=c53aeee9a688f68d64106a968876e542f701fbc6;hp=62e881d00a389a5314ac057090aa096db49c30c2;hpb=6ab4ef1cc71ff9d28a21a139db69e4a8351a3fb5;p=jalview.git diff --git a/utils/jalopy/docs/plugin-ant.html b/utils/jalopy/docs/plugin-ant.html index 62e881d..e964a08 100755 --- a/utils/jalopy/docs/plugin-ant.html +++ b/utils/jalopy/docs/plugin-ant.html @@ -16,3 +16,68 @@ * * You should have received a copy of the GNU General Public License along with Jalview. If not, see . --> + + + + Chapter 5. Ant Plug-in task + + +
Overview • + Download • + Documentation • + Plug-ins • + Links • + Contact
Features | + History | + Manual | + FAQ | + Javadoc
+ This page generated: June 8 2004

Chapter 5. Ant Plug-in task

+Describes the installation and usage of the Jalopy Ant Plug-in task. +

5.1. Installation

+Explains the steps involved in getting the Ant task up and running. +

5.1.1. System requirements

+The Plug-in requires Ant 1.3 or higher. It has been tested with 1.3 and 1.5 versions of Ant. +Please feel free to notify of other success stories. +See Section 1.1, “System requirements” for the basic requirements to +run Jalopy. +

+To obtain more information about this wonderful build tool, visit the official +Ant home page at the Apache Jakarta site: +http://jakarta.apache.org/ant/ +

5.1.2. Installation

+The Plug-in comes either as a single .zip or compressed +.tar archive. Unzipping either one of these files into a directory +of your choice (referred to as <INST_DIR>) +will produce three subdirectories /bin, /docs +and /lib. +

+

+..
+  bin/       contains wrapper scripts for different platforms
+  docs/      contains the documentation
+  lib/       contains all necessary libraries
+

+

+Before you can use the Jalopy Ant task in your build scripts, you have to add +it to your system. Maybe the simplest way is to utilize the +<taskdef> element in your build script as follows: +

+<taskdef name="jalopy"
+         classname="de.hunsicker.jalopy.plugin.ant.AntPlugin">
+  <classpath>
+    <fileset dir="<INST_DIR>/lib">
+      <include name="*.jar" />
+    </fileset>
+  </classpath>
+</taskdef>
+

+If you rather want to add the provided libraries to your classpath (either by +copying the libraries into the /lib folder of your Ant +installation or setting up the classpath as usual), please be aware that the +provided parser (aelfred-xxx.jar) +is incompatible with Ant 1.4.1 or prior releases. If you happen to use one of +these outdated versions, the parser library must not be copied into the +/lib folder (or added to the classpath) otherwise Ant will fail to work! +

to top