mirror of
https://github.com/LordBoos/boosCooldowns.git
synced 2024-11-01 00:10:02 +01:00
6c50eaf6c4
Refactor code
18 lines
815 B
XML
18 lines
815 B
XML
<assembly
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3"
|
|
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.3 http://maven.apache.org/xsd/assembly-1.1.3.xsd">
|
|
<id>boosCooldowns</id>
|
|
<formats>
|
|
<format>jar</format> <!-- the result is a jar file -->
|
|
</formats>
|
|
|
|
<includeBaseDirectory>false</includeBaseDirectory> <!-- strip the module prefixes -->
|
|
|
|
<dependencySets>
|
|
<dependencySet>
|
|
<unpack>true</unpack> <!-- unpack , then repack the jars -->
|
|
<useTransitiveDependencies>false</useTransitiveDependencies> <!-- do not pull in any transitive dependencies -->
|
|
</dependencySet>
|
|
</dependencySets>
|
|
</assembly> |