mirror of
https://github.com/magefree/mage.git
synced 2025-12-27 22:12:03 -08:00
add assembly support for Mage.Server
This commit is contained in:
parent
5b10b13299
commit
7d9d2bc744
2 changed files with 104 additions and 11 deletions
38
Mage.Server/src/main/assembly/distribution.xml
Normal file
38
Mage.Server/src/main/assembly/distribution.xml
Normal file
|
|
@ -0,0 +1,38 @@
|
|||
<?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>
|
||||
<formats>
|
||||
<format>zip</format>
|
||||
</formats>
|
||||
<dependencySets>
|
||||
<dependencySet>
|
||||
<outputDirectory>/</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-Game-FreeForAll</include>
|
||||
<include>org.mage:Mage-Game-TwoPlayerDuel</include>
|
||||
<include>org.mage:Mage-Player-AI</include>
|
||||
<include>org.mage:Mage-Player-AIMinimax</include>
|
||||
<include>org.mage:Mage-Player-Human</include>
|
||||
</includes>
|
||||
</dependencySet>
|
||||
<dependencySet>
|
||||
<outputDirectory>/lib/</outputDirectory>
|
||||
</dependencySet>
|
||||
</dependencySets>
|
||||
<fileSets>
|
||||
<fileSet>
|
||||
<directory>release/</directory>
|
||||
<outputDirectory>/</outputDirectory>
|
||||
</fileSet>
|
||||
</fileSets>
|
||||
</assembly>
|
||||
Loading…
Add table
Add a link
Reference in a new issue