Page 1 of 1

Running server in test mode fails

PostPosted: 13 Apr 2016, 22:03
by Fenhl
I'm trying to get a test server and client running to test changes locally. It worked when I first tried it, but now I'm getting the following error:

Code: Select all
Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2.1:exec (default-cli) on project mage-server: Command execution failed. Process exited with an error: 1 (Exit value: 1) -> [Help 1]
(The forum's spam filter is preventing me from posting the entire log.)

I can't think of any reason why it would fail like this. Any ideas?

Re: Running server in test mode fails

PostPosted: 13 Apr 2016, 22:07
by escplan9
Need to see the full log to determine from that what could be happening. Go to pastebin.com and paste the full log there, then paste the link here (and mask it if needed like pastebin(.)com / restOfURL

Re: Running server in test mode fails

PostPosted: 06 May 2016, 06:58
by Fenhl
I have managed to fix it by running
Code: Select all
mvn clean install -DskipTests
as suggested in this thread.

Re: Running server in test mode fails

PostPosted: 06 May 2016, 09:44
by escplan9
And I learned that command from the XMage Developer Getting Started guide:
https://github.com/magefree/mage/wiki/D ... ng-Started

Absolutely essential to look over at least once.