net.sf.antcontrib.antclipse
public class ClassPathTask extends Task
Since: Ant 1.5
Version: $Revision: 1.2 $
Field Summary | |
---|---|
static String | TARGET_CLASSPATH |
static String | TARGET_FILESET |
Method Summary | |
---|---|
void | execute() |
void | setExcludes(String excludes)
Setter for task parameter |
void | setIdContainer(String idContainer)
Setter for task parameter |
void | setIncludeLibs(boolean includeLibs)
Setter for task parameter |
void | setIncludeOutput(boolean includeOutput)
Setter for task parameter |
void | setIncludes(String includes)
Setter for task parameter |
void | setIncludeSource(boolean includeSource)
Setter for task parameter |
void | setproduce(String produce)
Setter for task parameter |
void | setProject(String project)
Setter for task parameter |
void | setVerbose(boolean verbose)
Setter for task parameter |
See Also: org.apache.tools.ant.Task#execute()
Parameters: excludes A regexp for files to exclude. It is taken into account only when producing a classpath, doesn't work on source or output files. It is a real regexp, not a "*" expression.
Parameters: idContainer The refid which will serve to identify the deliverables. When multiple filesets are produces, their refid is a concatenation between this value and something else (usually obtained from a path). Default "antclipse"
Parameters: includeLibs Boolean, whether to include or not the project libraries. Default is true.
Parameters: includeOutput Boolean, whether to include or not the project output directories. Default is false.
Parameters: includes A regexp for files to include. It is taken into account only when producing a classpath, doesn't work on source or output files. It is a real regexp, not a "*" expression.
Parameters: includeSource Boolean, whether to include or not the project source directories. Default is false.
Parameters: produce This parameter tells the task wether to produce a "classpath" or a "fileset" (multiple filesets, as a matter of fact).
Parameters: project project name
Parameters: verbose Boolean, telling the app to throw some info during each step. Default is false.