Version Differences for Conflicts of dependencies caused warning

(TEMPLATED text)
Line 1:
    + <pre> Conflicts of dependencies caused warning:</pre>  
       
    + = Explanation =  
       
    + This error usually occurs when the port that the JVM is trying to bind to has already been taken by another application, or is not open to the system. There are a multitude of reasons that this can happen, such as another application already occupying those ports, those ports being locked down on the system, or even rare cases such as the [[Connection Binding]] being incorrect and not having an IP unique to the current machine the anthillpro server is on.  
       
    + = Remedy =  
       
    + Free the port anthill is trying to connect to.  
       
    + = Error Examples =  
       
    + == Incorrect Bind-IP Within Database ==  
    + <pre>ERROR main com.urbancode.anthill3.main.server.AnthillServer - Cannot assign requested address: JVM_Bind  
    + java.net.BindException: Cannot assign requested address: JVM_Bind  
    + at java.net.PlainSocketImpl.socketBind(Native Method)  
    + at java.net.PlainSocketImpl.bind(PlainSocketImpl.java:359)  
    + at java.net.ServerSocket.bind(ServerSocket.java:319)  
    + at java.net.ServerSocket.<init>(ServerSocket.java:185)  
    + at javax.net.DefaultServerSocketFactory.createServerSocket(ServerSocketFactory.java:169)  
    + at com.urbancode.devilfish.server.dvlf.AcceptDevilfishServer.<init>(AcceptDevilfishServer.java:60)  
    + at com.urbancode.anthill3.main.server.network.NetworkSystem.newDevilfishServer(NetworkSystem.java:269)  
    + at com.urbancode.anthill3.main.server.network.NetworkSystem.start(NetworkSystem.java:119)  
    + at com.urbancode.anthill3.main.server.AnthillServer.run(AnthillServer.java:301)  
    + at com.urbancode.anthill3.main.server.AnthillServer.main(AnthillServer.java:109)  
    + at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)  
    + at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)  
    + at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)  
    + at java.lang.reflect.Method.invoke(Method.java:592)  
    + at com.urbancode.launcher.Launcher.main(Launcher.java:102)</pre>