Repository: flex-falcon Updated Branches: refs/heads/feature-autobuild/maven-archetypes 79aa6cacf -> fe276360f
- Tried to fix a problem with the Jenkinsfile and dynamic branch names Project: http://git-wip-us.apache.org/repos/asf/flex-falcon/repo Commit: http://git-wip-us.apache.org/repos/asf/flex-falcon/commit/fe276360 Tree: http://git-wip-us.apache.org/repos/asf/flex-falcon/tree/fe276360 Diff: http://git-wip-us.apache.org/repos/asf/flex-falcon/diff/fe276360 Branch: refs/heads/feature-autobuild/maven-archetypes Commit: fe276360f1cc6f5cc93549ab5d25b50551c54f4a Parents: 79aa6ca Author: Christofer Dutz <[email protected]> Authored: Wed Sep 28 16:23:06 2016 +0200 Committer: Christofer Dutz <[email protected]> Committed: Wed Sep 28 16:23:06 2016 +0200 ---------------------------------------------------------------------- Jenkinsfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/flex-falcon/blob/fe276360/Jenkinsfile ---------------------------------------------------------------------- diff --git a/Jenkinsfile b/Jenkinsfile index 2474e4d..8f085f3 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -64,21 +64,21 @@ node('windows-2012-1') { dir('compiler') { echo 'Building FlexJS Compiler' - bat 'mvn -U clean ${mavenGoal} -s C:\\.m2\\settings.xml -P apache-snapshots-enabled -Dcom.adobe.systemIdsForWhichTheTermsOfTheAdobeLicenseAgreementAreAccepted=3c9041a9,3872fc1e' + bat "mvn -U clean ${mavenGoal} -s C:\\.m2\\settings.xml -P apache-snapshots-enabled -Dcom.adobe.systemIdsForWhichTheTermsOfTheAdobeLicenseAgreementAreAccepted=3c9041a9,3872fc1e" } stage 'Build FlexJS Typedefs' dir('typedefs') { echo 'Building FlexJS Typedefs' - bat 'mvn -U clean ${mavenGoal} -s C:\\.m2\\settings.xml -P apache-snapshots-enabled -Dcom.adobe.systemIdsForWhichTheTermsOfTheAdobeLicenseAgreementAreAccepted=3c9041a9,3872fc1e' + bat "mvn -U clean ${mavenGoal} -s C:\\.m2\\settings.xml -P apache-snapshots-enabled -Dcom.adobe.systemIdsForWhichTheTermsOfTheAdobeLicenseAgreementAreAccepted=3c9041a9,3872fc1e" } stage 'Build FlexJS Framework' dir('framework') { echo 'Building FlexJS Framework' - bat 'mvn -U clean ${mavenGoal} -s C:\\.m2\\settings.xml -P apache-snapshots-enabled,build-examples,build-distribution -Dcom.adobe.systemIdsForWhichTheTermsOfTheAdobeLicenseAgreementAreAccepted=3872fc1e' + bat "mvn -U clean ${mavenGoal} -s C:\\.m2\\settings.xml -P apache-snapshots-enabled,build-examples,build-distribution -Dcom.adobe.systemIdsForWhichTheTermsOfTheAdobeLicenseAgreementAreAccepted=3872fc1e" } stage 'Release Site Changes'
