Switch to unified view

a b/src/main/resources/assembly/jar.xml
1
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
2
          xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3
          xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
4
    <id>final</id>
5
    <formats>
6
        <format>jar</format>
7
    </formats>
8
    <includeBaseDirectory>false</includeBaseDirectory>
9
    <dependencySets>
10
        <dependencySet>
11
            <unpack>true</unpack>
12
            <scope>runtime</scope>
13
            <useProjectArtifact>false</useProjectArtifact>
14
        </dependencySet>
15
    </dependencySets>
16
    <fileSets>
17
        <fileSet>
18
            <directory>${project.build.outputDirectory}</directory>
19
            <outputDirectory>/</outputDirectory>
20
        </fileSet>
21
    </fileSets>
22
</assembly>