diff options
author | Andreas Beeker <kiwiwings@apache.org> | 2021-04-08 17:54:42 +0000 |
---|---|---|
committer | Andreas Beeker <kiwiwings@apache.org> | 2021-04-08 17:54:42 +0000 |
commit | b9521e877c0331a5c4f5169b6446569b3b9ba09d (patch) | |
tree | a57ceb15749506635816f0e53c57f77fa2fc64b2 /jenkins | |
parent | 0f3bf7e37fc9d059f13c6e2ff6be281ffa02ea78 (diff) | |
download | poi-b9521e877c0331a5c4f5169b6446569b3b9ba09d.tar.gz poi-b9521e877c0331a5c4f5169b6446569b3b9ba09d.zip |
fix paths to new gradle directories
git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1888529 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'jenkins')
-rw-r--r-- | jenkins/create_jobs.groovy | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/jenkins/create_jobs.groovy b/jenkins/create_jobs.groovy index af67405037..f841b78790 100644 --- a/jenkins/create_jobs.groovy +++ b/jenkins/create_jobs.groovy @@ -453,7 +453,7 @@ poijobs.each { poijob -> } ant { targets(['run'] + (poijob.properties ?: [])) - buildFile('integrationtest/build.xml') + buildFile('poi-integration/build.xml') // Properties did not work, so I had to use targets instead //properties(poijob.properties ?: '') antInstallation(antRT) @@ -470,7 +470,7 @@ poijobs.each { poijob -> } } // in archive, junit and jacoco publishers, matches beneath build/*/build/... are for Gradle-build results - archiveArtifacts('build/dist/*.tar.gz,build/findbugs.html,build/coverage/**,integrationtest/build/test-results/**,*/build/libs/*.jar') + archiveArtifacts('build/dist/*.tar.gz,build/findbugs.html,build/coverage/**,poi-integration/build/test-results/**,*/build/libs/*.jar') warnings(['Java Compiler (javac)', 'JavaDoc Tool'], null) { resolveRelativePaths() } |