Skip license check for dependency reduced pom files (#9687)

This commit is contained in:
Jihoon Son 2020-04-11 18:11:53 -07:00 committed by GitHub
parent e6dd6a4119
commit 6a52bdc605
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -127,7 +127,7 @@ jobs:
install: skip install: skip
before_script: *setup_generate_license before_script: *setup_generate_license
script: > script: >
MAVEN_OPTS='-Xmx3000m' ${MVN} clean install -Pdist -Pbundle-contrib-exts --fail-at-end MAVEN_OPTS='-Xmx3000m' ${MVN} clean install -Prat -Pdist -Pbundle-contrib-exts --fail-at-end
-pl '!benchmarks' ${MAVEN_SKIP} ${MAVEN_SKIP_TESTS} -Ddruid.console.skip=false -T1C -pl '!benchmarks' ${MAVEN_SKIP} ${MAVEN_SKIP_TESTS} -Ddruid.console.skip=false -T1C
- <<: *package - <<: *package

View File

@ -1908,6 +1908,7 @@
<exclude>src/**/*.snap</exclude> <exclude>src/**/*.snap</exclude>
<exclude>examples/conf/**</exclude> <exclude>examples/conf/**</exclude>
<exclude>.asf.yaml</exclude> <exclude>.asf.yaml</exclude>
<exclude>**/dependency-reduced-pom.xml</exclude>
</excludes> </excludes>
</configuration> </configuration>
</plugin> </plugin>