24 lines
924 B
XML
24 lines
924 B
XML
<assembly
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
|
|
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>jar-with-all-dependencies</id>
|
|
<formats>
|
|
<format>jar</format>
|
|
</formats>
|
|
<includeBaseDirectory>false</includeBaseDirectory>
|
|
<dependencySets>
|
|
<dependencySet>
|
|
<outputDirectory>/</outputDirectory>
|
|
<useProjectArtifact>true</useProjectArtifact>
|
|
<unpack>true</unpack>
|
|
<scope>runtime</scope>
|
|
</dependencySet>
|
|
<dependencySet>
|
|
<outputDirectory>/</outputDirectory>
|
|
<unpack>true</unpack>
|
|
<scope>system</scope>
|
|
</dependencySet>
|
|
</dependencySets>
|
|
|
|
</assembly> |