Are there any instructions/guides available to deploy a v7 application to a Tomcat server? In Deployment, I have war settings created:
I have been going to a command line and typing:
$ gradlew buildWar
This puts a war file in build/distributions/war which I then manually copy to my Tomcat webapps directory.
Is there an automated way of doing this with Intellij? In a perfect world, I would like to be able to click Deploy somewhere and have it upload to the Tomcat server (which will automatically install it).
The Intellij docs start talking about creating artifacts, but I have no idea what settings need to be made.
Thanks.
Eric