mirror of
https://github.com/correl/mage.git
synced 2024-11-22 03:00:11 +00:00
...
This commit is contained in:
parent
4b4123742e
commit
79dc6aeaff
3 changed files with 15 additions and 4 deletions
|
@ -100,10 +100,6 @@
|
|||
|
||||
<delete file="${release.dir}/temp_final.jar"/>
|
||||
|
||||
<copy todir="${release.dir}/config">
|
||||
<fileset dir="./config"/>
|
||||
</copy>
|
||||
|
||||
<copy todir="${release.dir}">
|
||||
<fileset dir="./release"/>
|
||||
</copy>
|
||||
|
|
12
Mage.Server/release/config/config.xml
Normal file
12
Mage.Server/release/config/config.xml
Normal file
|
@ -0,0 +1,12 @@
|
|||
<?xml version="1.0" encoding="UTF-8"?>
|
||||
|
||||
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../Config.xsd">
|
||||
<server serverName="mage-server" port="17171" maxGameThreads="10" maxSecondsIdle="600"/>
|
||||
<playerTypes>
|
||||
<plugin name="Human" jar="Mage.HumanPlayer.jar" className="mage.human.HumanPlayer"/>
|
||||
<plugin name="Computer - default" jar="Mage.AI.jar" className="mage.ai.ComputerPlayer"/>
|
||||
</playerTypes>
|
||||
<gameTypes>
|
||||
<plugin name="Two Player Duel" jar="Mage.Game.TwoPlayerDuel.jar" className="mage.game.TwoPlayerGame"/>
|
||||
</gameTypes>
|
||||
</config>
|
3
Mage.Server/release/config/security.policy
Normal file
3
Mage.Server/release/config/security.policy
Normal file
|
@ -0,0 +1,3 @@
|
|||
grant {
|
||||
permission java.security.AllPermission;
|
||||
};
|
Loading…
Reference in a new issue