Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/1.x'
Browse files Browse the repository at this point in the history
  • Loading branch information
ao-apps committed Sep 8, 2023
2 parents f4ae262 + ecf1845 commit 276aeff
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -955,7 +955,9 @@ void deploySteps(niceCmd, projectDir, deployJdk, maven, mavenOpts, mavenOptsJdk1
copyArtifacts(
projectName: "/${JOB_NAME}",
selector: lastSuccessful(stable: true),
filter: '**/*.aar, **/*.jar, **/*.war, **/*.zip',
// *.pom included so pom-only projects have something to successfully download
// The other extensions match the types processed by ao-ant-tasks
filter: '**/*.pom, **/*.aar, **/*.jar, **/*.war, **/*.zip',
target: 'target/last-successful-artifacts',
flatten: true,
optional: !params.requireLastBuild
Expand Down
4 changes: 3 additions & 1 deletion book/Jenkinsfile
Original file line number Diff line number Diff line change
Expand Up @@ -953,7 +953,9 @@ void deploySteps(niceCmd, projectDir, deployJdk, maven, mavenOpts, mavenOptsJdk1
copyArtifacts(
projectName: "/${JOB_NAME}",
selector: lastSuccessful(stable: true),
filter: '**/*.aar, **/*.jar, **/*.war, **/*.zip',
// *.pom included so pom-only projects have something to successfully download
// The other extensions match the types processed by ao-ant-tasks
filter: '**/*.pom, **/*.aar, **/*.jar, **/*.war, **/*.zip',
target: 'target/last-successful-artifacts',
flatten: true,
optional: !params.requireLastBuild
Expand Down

0 comments on commit 276aeff

Please sign in to comment.