Different dependencies for different build profiles
问题 Is it possible to have a different set of dependencies in a maven pom.xml file for different profiles? e.g. mvn -P debug mvn -P release I\'d like to pick up a different dependency jar file in one profile that has the same class names and different implementations of the same interfaces. 回答1: To quote the Maven documentation on this: A profile element contains both an optional activation (a profile trigger) and the set of changes to be made to the POM if that profile has been activated. For