in src/main/java/org/apache/maven/plugin/compiler/AbstractCompilerMojo.java [1739:1752]
private String getMavenCompilerPluginVersion() {
Properties pomProperties = new Properties();
try (InputStream is = AbstractCompilerMojo.class.getResourceAsStream(
"/META-INF/maven/org.apache.maven.plugins/maven-compiler-plugin/pom.properties")) {
if (is != null) {
pomProperties.load(is);
}
} catch (IOException e) {
// noop
}
return pomProperties.getProperty("version");
}