Answers

Question and Answer:

  Home  ANT

⟩ Tell me how to set classpath in ant?

PATH- and CLASSPATH-type references can be specified using both ":" and ";" as separator characters. Ant converts the separator to the correct character of the current operating system.

<classpath>

<pathelement path="${classpath}"/>

<pathelement location="lib/helper.jar"/>

</classpath>

The location attribute specifies a single file or directory relative to the project's base directory (or an absolute filename)

The path attribute accepts colon- or semicolon-separated lists of locations. The path attribute is intended to be used with predefined paths - in any other case; multiple elements with location attributes should be preferred.

The <classpath> tag supports path and location attributes of its own:

<classpath path="${classpath}"/>

 144 views

More Questions for you: