Maven Global Plugin Configuration

I would like to have a plugin config that won't exist inside the file pom.xml

(as well as in any project files).

What I want to do is have a plugin that will only be used by me on my workstation. Specifically, I want to deploy my project in a Tomcat 7 container and I want to use the Apache Tomcat Maven Plugin for that, but since different developers might want to use different servers or all deployment methods, I don't want to include this configuration in the pom.xml

.

Is it possible in Maven to have such a global / custom plugin config?

+3


source to share





All Articles