Details
-
Type:
Bug
-
Status:
Closed
-
Priority:
Major
-
Resolution: Fixed
-
Affects Version/s: 3.0-alpha-1
-
Fix Version/s: 3.0-alpha-3
-
Component/s: Embedding
-
Labels:None
-
Complexity:Intermediate
-
Number of attachments :
Description
Read http://jira.codehaus.org/browse/MEVENIDE-532
In my top parent pom.xml i've define the maven-compiler-plugin configuration like:
<build>
<pluginManagement>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.5</source>
<target>1.5</target>
<encoding>UTF-8</encoding>
</configuration>
</plugin> ...
since not all my subprojects require the plugin, and when they do they silently include the plugin, it makes more sense to define it within the <pluginManagement> tag.
But when i use mevenide-netbeans all my projects are marked uncompilable since the maven embedder does not report the above defined configuration for the maven-compiler-plugin.
Issue Links
- is related to
-
MNG-522
pluginManagement doesn't inject source and target into maven-compiler-plugin
-
the netbeans integration is using a maven-embedder 2.1-SNAPSHOT from last September.