mirror of
https://github.com/Rogiel/l2jserver2
synced 2026-01-27 13:12:47 +00:00
38 lines
1.3 KiB
XML
38 lines
1.3 KiB
XML
<component
|
|
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/component/1.1.2"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/component/1.1.2 http://maven.apache.org/xsd/component-1.1.2.xsd">
|
|
<fileSets>
|
|
<fileSet>
|
|
<directory>${project.basedir}/distribution</directory>
|
|
<outputDirectory>/</outputDirectory>
|
|
</fileSet>
|
|
</fileSets>
|
|
<files>
|
|
<file>
|
|
<source>${project.build.directory}/${project.artifactId}-${project.version}.jar</source>
|
|
<outputDirectory>/</outputDirectory>
|
|
<destName>l2jserver2.jar</destName>
|
|
<fileMode>0755</fileMode>
|
|
</file>
|
|
<file>
|
|
<source>${project.build.directory}/${project.artifactId}-${project.version}-data.zip</source>
|
|
<outputDirectory>/</outputDirectory>
|
|
<destName>data.zip</destName>
|
|
</file>
|
|
</files>
|
|
<dependencySets>
|
|
<dependencySet>
|
|
<outputDirectory>/libs</outputDirectory>
|
|
<useProjectArtifact>false</useProjectArtifact>
|
|
<unpack>false</unpack>
|
|
<scope>runtime</scope>
|
|
<excludes>
|
|
<exclude>mysql:*</exclude>
|
|
<exclude>com.orientechnologies:*</exclude>
|
|
<exclude>com.h2database:*</exclude>
|
|
<exclude>org.apache.derby:*</exclude>
|
|
</excludes>
|
|
</dependencySet>
|
|
</dependencySets>
|
|
</component> |