@Library('farmmaps-shared-library') _ pipeline { agent any; options { copyArtifactPermission projectNames: env.allProjectsArtifactPermission; } triggers { upstream( upstreamProjects: '/FarmMaps.Develop/Base.Core.Common.Geometry/develop', threshold: hudson.model.Result.SUCCESS ) } stages { stage('TaskBuildAll') { steps { stepTaskBuildAll(); } } } post { success { postSuccess(); } always { postAlways(); } } }