mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-09 17:02:53 +00:00
24 lines
834 B
XML
24 lines
834 B
XML
<assembly
|
|
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.2 http://maven.apache.org/xsd/assembly-1.1.2.xsd">
|
|
<id>derby-bin</id>
|
|
<formats>
|
|
<format>zip</format>
|
|
</formats>
|
|
<includeBaseDirectory>true</includeBaseDirectory>
|
|
<componentDescriptors>
|
|
<componentDescriptor>src/main/assembly/distribution-bin.xml</componentDescriptor>
|
|
</componentDescriptors>
|
|
<dependencySets>
|
|
<dependencySet>
|
|
<outputDirectory>/libs</outputDirectory>
|
|
<useProjectArtifact>false</useProjectArtifact>
|
|
<unpack>false</unpack>
|
|
<scope>runtime</scope>
|
|
<includes>
|
|
<include>org.apache.derby:*</include>
|
|
</includes>
|
|
</dependencySet>
|
|
</dependencySets>
|
|
</assembly> |