mirror of
https://github.com/songoda/SongodaCore.git
synced 2024-11-23 18:45:34 +01:00
20 lines
767 B
XML
20 lines
767 B
XML
|
<assembly
|
||
|
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
|
||
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
||
|
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
|
||
|
<id>dist</id>
|
||
|
<formats>
|
||
|
<format>jar</format>
|
||
|
</formats>
|
||
|
<includeBaseDirectory>false</includeBaseDirectory>
|
||
|
|
||
|
<dependencySets>
|
||
|
<dependencySet>
|
||
|
<unpack>true</unpack>
|
||
|
<useTransitiveDependencies>false</useTransitiveDependencies>
|
||
|
<includes>
|
||
|
<include>${project.groupId}:*</include>
|
||
|
</includes>
|
||
|
</dependencySet>
|
||
|
</dependencySets>
|
||
|
</assembly>
|