Hlib
Hlib

Reputation: 3074

How to start external tomcat?

I have project and I use maven to to build project:

mvn clean install

also I've a tomcat 6 with setted external web module. so after maven I just stats tomcat and all work good.

But I want to do these two things (mvn-clean-install, start-tomcat) just by one click. How I can start tomcat via maven? But I relly do no need to deploy project on tomcat...because tomcat already "know" where my project exist.

Thanks!

Upvotes: 1

Views: 422

Answers (1)

yodamad
yodamad

Reputation: 1510

Have a look at this plugin : Maven-Tomcat-Plugin

Upvotes: 1

Related Questions