java - Ant properties override -
i have question, have build.properties have property test=true; , ant target should called in case test true. want have value default one. possible somehow change value in jenkins? tried set test=false, seems there no effect. suggestions?
in scenario have modify ant script below, work expected. if not try similar kind of logic set default , dynamic values ant. if pass value jenkins if -dtest=true otherwise default assign value false
<condition property="test" value="${test}" else="false"> <isset property="${test}" /> </condition>
Comments
Post a Comment