blob: f2aa6d6e6c98fb0e7c8fe60fd66d8174c2bce4e7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<!-- This is an assembly descriptor that produces a jar file that contains all the
dependencies, fully expanded into a single jar, required to run the tests of
a maven project.
-->
<assembly>
<id>source</id>
<formats>
<format>jar</format>
</formats>
<includeBaseDirectory>false</includeBaseDirectory>
<fileSets>
<fileSet>
<directory>src/main/java</directory>
<outputDirectory></outputDirectory>
</fileSet>
</fileSets>
</assembly>
|