Providing system properties via command line with dot in the name in Gradle -
we migrating our project maven gradle. our ci uses system properties -dwebdriver.type=firefox set behaviour don't want hardcode such props in gradle.properties file etc. there way provide system property dot in name using command line?
if run following:
build.gradle:
logger.lifecycle("some.property ${system.properties['some.property']}") with:
gradle -dsome.property=lol it should give expected output.
Comments
Post a Comment