I have a parent POM which defines maven-compiler-plugin definition/configuration under pluginManagement.plugins.plugin.
I have a multi-module project which has a requirement to re-define the configuration for their respective modules (e.g. moduleA, moduleB). Since the definitions are inherited can I be assured that configuration specific to moduleA, moduleB will be used while performing the build.
e.g. moduleA wants to use jdk 1.5 to compile and moduleB wants to use JDK 1.6 to compile.
How should this be defined in the POM files? Do I need to define anything in the parent POM or should I just define compiler-plugin with respective configurations on moduleA, moduleB.