Merge pull request #740 from hapifhir/dotasek-cleaner-validator-cli-meta-inf

Ignore META-INF while unpacking dependencies
This commit is contained in:
Grahame Grieve 2022-03-08 09:41:15 +11:00 committed by GitHub
commit 561ab36cd1
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -4,4 +4,5 @@
## Other code changes
* Ignore META-INF contents from other dependencies while building Validator jar
* Fix to r5 TestingUtilities to allow NarrativeGenerationTests to pass.

View File

@ -76,7 +76,7 @@
<goal>unpack-dependencies</goal>
</goals>
<configuration>
<excludes>**/module-info.class,META-INF/*.SF,META-INF/*.DSA,META-INF/*.RSA</excludes>
<excludes>**/module-info.class,META-INF/*</excludes>
<outputDirectory>${project.build.directory}/classes</outputDirectory>
<overWriteReleases>false</overWriteReleases>
<overWriteSnapshots>true</overWriteSnapshots>