How does ant read properties? How to set my property system?
Answer / Rohitash Kumar
Ant reads properties from a file named build.properties by default. You can also specify a custom properties file using the -propertyfile option or the propertyfile attribute in your build.xml file. To set properties directly, use:
```
<project>
<property name="myProperty" value="myValue"/>
</project>
| Is This Answer Correct ? | 0 Yes | 0 No |
How we can set compile target using ant?
How to use ant-contrib tasks?
What is a build tool?
Explain how to import .jar files?
How many types of build tool you know?
What are the core concepts of ant?
What is minimum version of java is required to run apache ant 1.9.x?
Explain how to test classes for junit using ant script?
How many ways we can set properties into build ant file?
What is dependency? How it is used into ant? What is its use?
List some basic functions performed by ant.
What is different between ant and make?