Page 1 of 1

Mage Server Build/Run Fails

PostPosted: 27 Apr 2016, 21:17
by Bitmaximus
When I run the Mage Server Project it gives me the following:

Pastebin: bNAgQLsy (I'm not able to put the URL here apparently...)

I haven't been able to figure out why this is the case. If I delete the Loxodon Warhammer files it just jams on another card. I'd like to be able to run testing for changes I'm trying out.
If anyone has any ideas they'd be appreciated. Thank you!

Liam

Re: Mage Server Build/Run Fails

PostPosted: 27 Apr 2016, 22:48
by escplan9
Try the following (assuming you have Maven installed and using Windows / Command Prompt)

Make sure you get the latest changes and merge them
Code: Select all
git fetch upstream
git checkout master
git merge upstream/master
git commit -m "merge"
git push
Then do a full clean and rebuild of the project
Code: Select all
mvn clean install -DskipTests
If the Maven clean install command fails still - restart the computer then try the Maven clean install command again. This usually resolves all sorts of build issues for me. (see Developer Getting Started guide for more details on Maven: https://github.com/magefree/mage/wiki/D ... ng-Started )

Re: Mage Server Build/Run Fails

PostPosted: 28 Apr 2016, 00:16
by Bitmaximus
The maven clean install seems to have done the trick, thanks!