Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have written pom.xml for auto deployment process between hudson and deployment servers.

The script which i return its working perfectly i can see the application in web logic server. The application has been deployed in the web logic server. No issues that.

All the remaining task is also very well working in the servers but the build is failing as failed by saying the below error in hudson

[ServerConnectionImpl.close():332] : Closing DM connection   
[ServerConnectionImpl.close():352] : Unregistered all listeners  
[ServerConnectionImpl.closeJMX():372] : Closed JMX connection  
[ServerConnectionImpl.closeJMX():384] : Closed Runtime JMX connection  
[ServerConnectionImpl.closeJMX():396] : Closed Edit JMX connection  
**ERROR: Maven JVM terminated unexpectedly with exit code 0**  
Sending e-mails to: test@gmail.com  
Finished: FAILURE

I don't know why this is happening in maven.

Here is my maven opts set in Hudson server.

Maven_OPTS : -Xms256m -Xmx1024m -XX:MaxPermSize=512m
share|improve this question
Maybe check whether all plugins have the most recent version? What plugins do you have? – marc Jul 26 '11 at 12:40
We can't possibly help you unless you tell us what plugin you have configured that is logging those ServierConnectionImpl messages. You aren't using maven-exec-plugin to run code of your own, are you? – bmargulies Jul 26 '11 at 12:51
Thanks for your response. @bmargulies: I didnt use maven-exec-plugin . I used weblogic-maven-plugin for deployment process. – Rocky Jul 27 '11 at 6:26
1  
Look like a bug in that. – bmargulies Jul 27 '11 at 12:15
1  
Can you run it with -X so we have more details ? – Samuel EUSTACHI May 7 '12 at 8:48
show 1 more comment

1 Answer

Without more to go on, I'm going to speculate you are getting hit by this issue with the weblogic maven plugin. In order to resolve that problem, make sure you are running the latest version of the plugin. If that doesn't resolve it then I think you should try adding the following to your pom's plugin configuration:

<noExit>true</noExit>
<continueOnFailure>true</continueOnFailure>

The first line stops weblogic from exiting and the second line tells the deployer to continue. You could try just adding each one individually.

If none of the above helps, then there is another System.exit() somewhere in the code path. You might need to hook up a debugger.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.