Hi,

This commit gives me compilation errors, e.g.
[ERROR] /E:/java-workspace/apache-maven-plugin-tools/plugin-tools/maven-plugin-plugin/src/main/java/org/apache/maven/plugin/plugin/PluginReport.java:[77,6] E:\java-workspace\apache-maven-plugin-tools\plugin-tools\maven-plugin-plugin\src\main\java\org\apache\maven\plugin\plugin\PluginReport.java:77: cannot find symbol
[ERROR] symbol  : class Parameter
[ERROR] location: class org.apache.maven.plugin.plugin.PluginReport

By changing the dependency to runtime I would indeed expect this kind of errors, since the code uses these classes.
However, Jenkins is quite happy for a long time.

https://builds.apache.org/view/All/job/maven-plugin-tools/changes

Anyone a clue what's happening here?

thanks,
Robert

Op Sun, 28 Dec 2014 18:41:43 +0100 schreef <[email protected]>:

Author: hboutemy
Date: Sun Dec 28 17:41:43 2014
New Revision: 1648234

URL: http://svn.apache.org/r1648234
Log:
reordered default extractors

Modified:
    maven/plugin-tools/trunk/maven-plugin-plugin/pom.xml

Modified: maven/plugin-tools/trunk/maven-plugin-plugin/pom.xml
URL: http://svn.apache.org/viewvc/maven/plugin-tools/trunk/maven-plugin-plugin/pom.xml?rev=1648234&r1=1648233&r2=1648234&view=diff
==============================================================================
--- maven/plugin-tools/trunk/maven-plugin-plugin/pom.xml (original)
+++ maven/plugin-tools/trunk/maven-plugin-plugin/pom.xml Sun Dec 28 17:41:43 2014
@@ -49,11 +49,6 @@
   </properties>
  <dependencies>
-    <dependency>
-      <groupId>org.apache.maven.plugin-tools</groupId>
-      <artifactId>maven-plugin-tools-annotations</artifactId>
-    </dependency>
-
     <!-- doxia -->
     <dependency>
       <groupId>org.apache.maven.doxia</groupId>
@@ -134,13 +129,18 @@
       <version>3.0</version>
     </dependency>
-    <!-- Maven runtime -->
+    <!-- Maven runtime: extractors used by default -->
     <dependency>
       <groupId>org.apache.maven.plugin-tools</groupId>
       <artifactId>maven-plugin-tools-java</artifactId>
       <scope>runtime</scope>
     </dependency>
     <dependency>
+      <groupId>org.apache.maven.plugin-tools</groupId>
+      <artifactId>maven-plugin-tools-annotations</artifactId>
+      <scope>runtime</scope>
+    </dependency>
+    <dependency>
       <groupId>org.apache.maven.plugin-tools</groupId>
       <artifactId>maven-plugin-tools-beanshell</artifactId>
       <scope>runtime</scope>


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to