Hi,
I am using jenkins environment variable, i am specifying property something like
count=1
the same is present in my build file as
<entry key="count" value="${env.count}"/>
I have specified a property file something as
C:\Users\myname.i\workspace\Project\application.properties
When i trigger the build, the property file gets updated as count=${env.count} and not the value which is 1 ( I am passing this as a parameter from jenkins)
Can anyone say what wrong i am doing here