ANT Pertanyaan dan Jawaban Wawancara
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> |
Simpan untuk Revisi
Bookmark item ini, tandai sebagai sulit, atau masukkan ke dalam set revisi.
Masuk untuk menyimpan bookmark, pertanyaan sulit, dan set revisi.
Apakah ini membantu? Ya Tidak
Most helpful rated by users:
- 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?