I am going to write several simple web apps, but I have an issue with deploying applications. I use NetBeans IDE 8.0 (Build 201403101706) with Apache Tomcat 8.0.3 (that came along with Netbeans).
After I click 'deploy' on my web app, there is a new WebApplication1 run-deploy window. It contains:
ant -f C:\\Users\\chechulin\\Documents\\NetBeansProjects\\WebApplication1 -Dbrowser.context=C:\\Users\\chechulin\\Documents\\NetBeansProjects\\WebApplication1 -DforceRedeploy=true -Ddirectory.deployment.supported=true -Dnb.wait.for.caches=true -Dnb.internal.action.name=redeploy run-deploy
init:
deps-module-jar:
deps-ear-jar:
deps-jar:
library-inclusion-in-archive:
library-inclusion-in-manifest:
compile:
compile-jsps:
And there is a never-ending 'Deploying WebApplication1" process. Server shows that there is no apps. And I cannot expand Web Applications node that should be like on the following picture:

But when I take .war file from the project /dist directory and manually deploy in to the server, it works fine!
I just cannot figure where is the problem!