Repository: maven-surefire
Updated Branches:
  refs/heads/master d60225741 -> ef06e4194


Fix M2Eclipse error and consistency.

Since the whole target/generated-sources was added to the classpath, m2e
considered the package declaration of the HelpMojo (generated inside
target/generated-sources/plugin) to be incorrect -- the fix is to unpack
the logging classes of maven-shared-utils into a dedicated folder.

Project: http://git-wip-us.apache.org/repos/asf/maven-surefire/repo
Commit: http://git-wip-us.apache.org/repos/asf/maven-surefire/commit/ef06e419
Tree: http://git-wip-us.apache.org/repos/asf/maven-surefire/tree/ef06e419
Diff: http://git-wip-us.apache.org/repos/asf/maven-surefire/diff/ef06e419

Branch: refs/heads/master
Commit: ef06e41943b5402a2fb640f993b4a20626196627
Parents: d602257
Author: Tunaki <guillaume_b...@orange.fr>
Authored: Thu Sep 22 00:43:19 2016 +0200
Committer: Tunaki <guillaume_b...@orange.fr>
Committed: Thu Sep 22 00:43:19 2016 +0200

----------------------------------------------------------------------
 maven-surefire-report-plugin/pom.xml | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/maven-surefire/blob/ef06e419/maven-surefire-report-plugin/pom.xml
----------------------------------------------------------------------
diff --git a/maven-surefire-report-plugin/pom.xml 
b/maven-surefire-report-plugin/pom.xml
index e911c6e..81e0214 100644
--- a/maven-surefire-report-plugin/pom.xml
+++ b/maven-surefire-report-plugin/pom.xml
@@ -146,7 +146,7 @@
             </goals>
             <configuration>
               <sources>
-                <source>${project.build.directory}/generated-sources</source>
+                
<source>${project.build.directory}/generated-sources/dependency</source>
               </sources>
             </configuration>
           </execution>
@@ -162,7 +162,7 @@
               <goal>unpack</goal>
             </goals>
             <configuration>
-              
<outputDirectory>${project.build.directory}/generated-sources</outputDirectory>
+              
<outputDirectory>${project.build.directory}/generated-sources/dependency</outputDirectory>
               <overWriteIfNewer>false</overWriteIfNewer>
               
<artifact>org.apache.maven.shared:maven-shared-utils:3.1.0:jar:sources</artifact>
               <includes>org/apache/maven/shared/utils/logging/*.java</includes>

Reply via email to