mage/Mage.Server/src/main/assembly/distribution.xml
2016-02-26 21:05:21 +03:00

79 lines
3.3 KiB
XML

<?xml version="1.0" encoding="UTF-8"?>
<assembly xmlns="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/plugins/maven-assembly-plugin/assembly/1.1.1
http://maven.apache.org/xsd/assembly-1.1.1.xsd">
<includeBaseDirectory>false</includeBaseDirectory>
<id>mage-server</id>
<formats>
<format>zip</format>
</formats>
<dependencySets>
<dependencySet>
<outputDirectory>/lib</outputDirectory>
<includes>
<include>org.mage:mage-server</include>
</includes>
</dependencySet>
<dependencySet>
<outputDirectory>/plugins</outputDirectory>
<includes>
<include>org.mage:mage-deck-constructed</include>
<include>org.mage:mage-deck-limited</include>
<include>org.mage:mage-game-commanderduel</include>
<include>org.mage:mage-game-freeforall</include>
<include>org.mage:mage-game-twoplayerduel</include>
<include>org.mage:mage-player-aiminimax</include>
<include>org.mage:mage-player-ai-ma</include>
<include>org.mage:mage-player-human</include>
<include>org.mage:mage-tournament-boosterdraft</include>
<include>org.mage:mage-tournament-sealed</include>
<include>org.mage:mage-player-ai-draftbot</include>
</includes>
</dependencySet>
<dependencySet>
<outputDirectory>/lib/</outputDirectory>
<excludes>
<exclude>org.mage:mage-server</exclude>
<exclude>org.mage:mage-deck-constructed</exclude>
<exclude>org.mage:mage-deck-limited</exclude>
<exclude>org.mage:mage-game-commanderduel</exclude>
<exclude>org.mage:mage-game-freeforall</exclude>
<exclude>org.mage:mage-game-twoplayerduel</exclude>
<exclude>org.mage:mage-player-aiminimax</exclude>
<exclude>org.mage:mage-player-ai-ma</exclude>
<exclude>org.mage:mage-player-human</exclude>
<exclude>org.mage:mage-tournament-boosterdraft</exclude>
<exclude>org.mage:mage-tournament-sealed</exclude>
<exclude>org.mage:mage-player-ai-draftbot</exclude>
</excludes>
</dependencySet>
</dependencySets>
<fileSets>
<fileSet>
<filtered>true</filtered>
<directory>release/</directory>
<outputDirectory>/</outputDirectory>
<excludes>
<exclude>*.sh</exclude>
</excludes>
</fileSet>
<fileSet>
<filtered>true</filtered>
<directory>release/</directory>
<outputDirectory>/</outputDirectory>
<includes>
<include>*.sh</include>
</includes>
<fileMode>0755</fileMode>
</fileSet>
<fileSet>
<filtered>false</filtered>
<directory>target/</directory>
<includes>
<include>*.exe</include>
</includes>
<outputDirectory>/</outputDirectory>
</fileSet>
</fileSets>
</assembly>