In my GlassFish Server, I got this error message:
In-place deployment at D:\simpers\simpers\simpers-war\build\web<br>
GlassFish Server, deploy, null, false<br>
D:\simpers\simpers\simpers-war\nbproject\build-impl.xml:1118: The module has not been deployed.<br>
See the server log for details.<br>
BUILD FAILED (total time: 5 seconds)<br>
I got the same problem. Check you log and verify if it throws a missing Jar exception, that was my problem. For example, this was the log file
Caused by: java.lang.Exception: java.lang.NoClassDefFoundError: de/undercouch/bson4jackson/BsonFactory
Then, just add the missing Jar files.
You can find your server log file at:
Your_GlassFish_Location\glassfish\domains\domain1\logs\server.log
Hope it helps you! CYA