Krysalis Antworks
 
Built with Apache Forrest logo
  Font size:      
 

Antworks

PDF
PDF

Taking Ant to the Next Level

The antworks project is a set of tools and standardized targets that greatly simplifies using ant in your projects

Importer

The driver behind antworks is Importer. Importer is an extension to the ant import task that will download and cache an ant build.xml file and it's associated resources called antlets.

Warning
This will not work until you have installed Importer

Antlets

An antlet is a jar file that contains a ant build file, called xbuild.xml, that is imported and any resources needed by xbuild.xml. Here is a small example xbuild.xml.

 <project default="say" name="helloworld">
	<target name="say">
	<echo>Hello World!</echo>
	</target>
</project> 
     

There is nothing special required for an antlet except for the naming the file xbuild.xml There are some best practices that you to help along with detailed instructions on making your own antlet.

Fixme ()
create page

Take a look at Getting Started for a complete example on how to use antlets in your project.



Valid HTML 4.01!Valid CSS!