0
votes

I am trying to find out the way in which the ant prorperty file can be passed in "Invoke Ant" build steps. Can you please show me the right direction.

As per the jenkins "Invoke Ant" description, it can only accept name1=value1.

Please suggest me!!!

1

1 Answers

2
votes

you can put your ant property file to your project, and use build.xml to include your property file, something like this:

build.xml:

<property file="build.properties"/>

project structure:

your_project
--build.xml
--build.properties