mirror of
https://github.com/ME1312/SubServers-2.git
synced 2024-11-29 05:36:13 +01:00
20 lines
841 B
XML
20 lines
841 B
XML
|
<?xml version="1.0" encoding="UTF-8"?>
|
||
|
<assembly xmlns="http://maven.apache.org/ASSEMBLY/2.1.1" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/ASSEMBLY/2.1.1 https://maven.apache.org/xsd/assembly-2.1.1.xsd">
|
||
|
<id>jar-with-some-dependencies</id>
|
||
|
<formats>
|
||
|
<format>jar</format>
|
||
|
</formats>
|
||
|
<includeBaseDirectory>false</includeBaseDirectory>
|
||
|
<dependencySets>
|
||
|
<dependencySet>
|
||
|
<outputDirectory>/</outputDirectory>
|
||
|
<useProjectArtifact>true</useProjectArtifact>
|
||
|
<unpack>true</unpack>
|
||
|
<scope>runtime</scope>
|
||
|
<excludes>
|
||
|
<exclude>org.json:json</exclude>
|
||
|
<exclude>org.yaml:snakeyaml</exclude>
|
||
|
</excludes>
|
||
|
</dependencySet>
|
||
|
</dependencySets>
|
||
|
</assembly>
|