21 lines
673 B
XML
21 lines
673 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.2.xsd">
|
|
<id>jar-with-dependencies</id>
|
|
<formats>
|
|
<format>jar</format>
|
|
</formats>
|
|
<includeBaseDirectory>false</includeBaseDirectory>
|
|
<fileSets>
|
|
<fileSet>
|
|
<directory>${project.basedir}/target/classes</directory>
|
|
<outputDirectory>/</outputDirectory>
|
|
</fileSet>
|
|
</fileSets>
|
|
<dependencySets>
|
|
<dependencySet>
|
|
<unpack>false</unpack>
|
|
</dependencySet>
|
|
</dependencySets>
|
|
</assembly> |