ANT preguntas y respuestas de entrevista
Question: How to set Classpath in Ant script?Answer: The following is the code snippet to set the classpath in ant:<path id=”build.classpath”> <fileset dir=”${build.lib}” includes=”**/*.jar/> <fileset dir=”${build.class”}/> </path> <target….> <javac….> <classpath field=”build.classpath”/> </javac> </target> <target….> <javac….> <classpath field=”build.classpath”/> </javac> </target> |
Guardar para repaso
Guarda este elemento en marcadores, marcalo como dificil o agregalo a un conjunto de repaso.
Inicia sesion para guardar marcadores, preguntas dificiles y conjuntos de repaso.
Es util? Si No
Lo mas util segun los usuarios:
- What is ANT?
- Explain ANT functionality.
- Explain using ANT and give an small example.
- How to set Classpath in Ant script?
- How to set property file in Ant script?