ANT اسئلة واجوبة المقابلات
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> |
احفظ للمراجعة
احفظ هذا العنصر في الإشارات المرجعية، او حدده كصعب، او ضعه في مجموعة مراجعة.
سجل الدخول لحفظ الإشارات المرجعية والاسئلة الصعبة ومجموعات المراجعة.
هل هذا مفيد؟ نعم لا
الاكثر فائدة حسب تقييم المستخدمين:
- 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?