ANT اسئلة واجوبة المقابلات
Question: How to set property file in Ant script?Answer: <!-- Import properties from build.properties --><property name="build.properties" value="${basedir}/conf/build.properties" /> <fail message="Missing build.properties file: please use -Dbuild.properties=/path/to/file"> <condition> <not> <available file="${build.properties}" type="file" /> </not> </condition> </fail> <property file="${build.properties}" /> |
احفظ للمراجعة
احفظ هذا العنصر في الإشارات المرجعية، او حدده كصعب، او ضعه في مجموعة مراجعة.
سجل الدخول لحفظ الإشارات المرجعية والاسئلة الصعبة ومجموعات المراجعة.
هل هذا مفيد؟ نعم لا
الاكثر فائدة حسب تقييم المستخدمين:
- 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?