I have one code used to create an application for multiple platforms.
Locally, I installed the main build-env.properties file and a number of additional * .properties files, which I use to switch settings for the different platforms that I publish.
When performing my build on the command line, I just use the command:
ant build -propertyfile dev-build.properties
How can I do this in Jenkins?
I am currently using the "Invoke Ant" command with the build target set, but I donβt understand how to specify an additional properties file?
source share