mirror of
https://github.com/Rogiel/l2jserver2
synced 2025-12-05 23:22:47 +00:00
42 lines
1.3 KiB
XML
42 lines
1.3 KiB
XML
<assembly
|
|
xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0"
|
|
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.0 http://maven.apache.org/xsd/assembly-1.1.0.xsd">
|
|
<id>orientdb-bin</id>
|
|
<formats>
|
|
<format>zip</format>
|
|
</formats>
|
|
<baseDirectory></baseDirectory>
|
|
<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>true</useProjectArtifact>
|
|
<unpack>false</unpack>
|
|
<scope>runtime</scope>
|
|
<excludes>
|
|
<exclude>mysql:*</exclude>
|
|
<exclude>com.h2database:*</exclude>
|
|
<exclude>org.apache.derby:*</exclude>
|
|
</excludes>
|
|
</dependencySet>
|
|
</dependencySets>
|
|
</assembly> |