Ben Douglas 6c55bc7821 Gradle plugin: Support parameter passing
Introduce 2 booleans in the Gradle builder section to support passing
parameters by System Properties and Project Properties

Change-Id: I0de1e20b85902263e0d83ccadd64d42fc2b37193
2020-06-01 17:23:57 -04:00

23 lines
712 B
XML

<?xml version="1.0" encoding="utf-8"?>
<project>
<builders>
<hudson.plugins.gradle.Gradle>
<description/>
<buildFile>build.gradle</buildFile>
<tasks>init
build
tests
</tasks>
<rootBuildScriptDir>${workspace}/tests</rootBuildScriptDir>
<gradleName>gradle-1.2</gradleName>
<useWrapper>true</useWrapper>
<makeExecutable>true</makeExecutable>
<fromRootBuildScriptDir>true</fromRootBuildScriptDir>
<passAllAsSystemProperties>true</passAllAsSystemProperties>
<passAllAsProjectProperties>true</passAllAsProjectProperties>
<switches>-g /foo/bar/.gradle
-PmavenUserName=foobar</switches>
</hudson.plugins.gradle.Gradle>
</builders>
</project>