Merge pull request #740 from hapifhir/dotasek-cleaner-validator-cli-meta-inf
Ignore META-INF while unpacking dependencies
This commit is contained in:
commit
561ab36cd1
|
@ -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.
|
||||
|
|
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue