When using the Maven plugin, we can start Tomcat from command line using this:
mvn tomcat:run
If I have 2 separate installations of Tomcat on my machines, (say Tomcat 6.x and 7.x), is there a way I can specify which one to :run???
EDIT 1:
As sugested ny Cyril, I tried:
mvn tomcat6:run and mvn tomcat7:run
And I got this error:
[ERROR] No plugin found for prefix 'tomcat6' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repositories [local (/Users/chitteb/.m2/repository), central (http://repo1.maven.org/maven2)] -> [Help 1]
mvn tomcat6:runandmvn tomcat7:run? – Cyril Pangilinan May 2 '12 at 7:37org.apache.tomcat.mavento<pluginGroups>in yoursettings.xmlas described here; that will fix the "no plugin found for prefix" error. – user944849 May 2 '12 at 13:39