You can not select more than 25 topics Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.

README 2.5 kB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  1. A N T I D O T E
  2. What is it?
  3. -----------
  4. Antidote is the Java based GUI interface to the Ant build tool.
  5. Status
  6. ------
  7. Antidote is in the early stages of development. Its usefulnes is limited, and
  8. will not be distributed with the binary versions of Ant until it is deemed
  9. featureful and robust enough for end user use. That being said, it currently
  10. will load an Ant build.xml file, allow you to edit some of the file's
  11. properties, save it, and launch a build starting at any target in the
  12. project.
  13. The Latest Version
  14. ------------------
  15. The latest version is the current CVS version, which may or may not be useful
  16. at any given time. The source code is not being base-lined at any specific
  17. version at this time.
  18. Documentation
  19. -------------
  20. Any documentation that exists for Antidote can be found in the antidote/docs
  21. directory. Documentation is primarily developement based documentation as
  22. Antidote is not yet mature enough for reliable user documentation.
  23. Building
  24. --------
  25. Antidote requres JAXP 1.0.1 from Sun (http://java.sun.com/xml). Some time in
  26. the future it is hoped at any w3c based XML will be usable, but at the
  27. current time the Sun library is needed. The easiest way to install the
  28. jaxp.jar and parsers.jar file that comes with the distribution is to copy
  29. them into your $JAVA_HOME/jre/lib/ext directory.
  30. There is a build.xml file in the same directory as this file that will work
  31. with Ant 1.2. It is recommended that Ant be built first (from ../..),
  32. followed by this directory. By default, the compiled classes will be written
  33. to ~/built/antidote/classes, but the JAR file and launch scripts are written
  34. to the Ant build directory (~/build/ant).
  35. Running
  36. -------
  37. Antidote requires at least Java 1.2 to run.
  38. Upon successful building of Ant and Antidote (in that order), go to
  39. ~/build/ant/bin and run "antidote". You will probably have to set the
  40. environment variable "ANT_HOME" to "~/build/ant" in the shell that you launch
  41. antidote from. If desired, you can provide the build file to launch at statup
  42. as the first argument on the command line to "antidote".
  43. Licensing
  44. ---------
  45. This software is licensed under the terms you may find in the file
  46. named "LICENSE" provided with this distribution.
  47. Thanks for using Antidote.
  48. The Apache Jakarta Project
  49. <http://jakarta.apache.org/>