Packaging: Add commons codec jar to packaged zip

In order to use the `esusers` tool and to crypt passwords, one needs
to have the jar packaged in the zip release. This adds the depdendency
to the assembly descriptor.

Original commit: elastic/x-pack-elasticsearch@82ae451892
This commit is contained in:
Alexander Reelsen 2014-08-11 10:11:26 +02:00
parent 2c71ece598
commit 91a4b74037
1 changed files with 8 additions and 0 deletions

View File

@ -25,5 +25,13 @@
<exclude>org.elasticsearch:elasticsearch</exclude>
</excludes>
</dependencySet>
<dependencySet>
<outputDirectory>/</outputDirectory>
<useProjectArtifact>true</useProjectArtifact>
<useTransitiveFiltering>true</useTransitiveFiltering>
<includes>
<include>commons-codec:commons-codec</include>
</includes>
</dependencySet>
</dependencySets>
</assembly>