You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@creadur.apache.org by po...@apache.org on 2014/08/22 22:12:16 UTC

svn commit: r1619921 - in /creadur/whisker/trunk/apache-whisker-plugin4maven: pom.xml src/main/java/org/apache/creadur/whisker/plugin/maven/GenerateMojo.java

Author: pottlinger
Date: Fri Aug 22 20:12:15 2014
New Revision: 1619921

URL: http://svn.apache.org/r1619921
Log:
WHSIKER-12 Problems with MOJO on CI

- Upgrading maven-plugin-stuff in order to hopefully get a green build on CI.
- Added mojo-attribute that no project is required to run this plugin.


Modified:
    creadur/whisker/trunk/apache-whisker-plugin4maven/pom.xml
    creadur/whisker/trunk/apache-whisker-plugin4maven/src/main/java/org/apache/creadur/whisker/plugin/maven/GenerateMojo.java

Modified: creadur/whisker/trunk/apache-whisker-plugin4maven/pom.xml
URL: http://svn.apache.org/viewvc/creadur/whisker/trunk/apache-whisker-plugin4maven/pom.xml?rev=1619921&r1=1619920&r2=1619921&view=diff
==============================================================================
--- creadur/whisker/trunk/apache-whisker-plugin4maven/pom.xml (original)
+++ creadur/whisker/trunk/apache-whisker-plugin4maven/pom.xml Fri Aug 22 20:12:15 2014
@@ -30,13 +30,13 @@
     <dependency>
       <groupId>org.apache.maven</groupId>
       <artifactId>maven-plugin-api</artifactId>
-      <version>3.2.2</version>
+      <version>3.2.3</version>
     </dependency>
     <dependency>
       <groupId>org.apache.maven.plugin-tools</groupId>
       <artifactId>maven-plugin-annotations</artifactId>
       <!-- keep in sync with maven-plugin-plugin version derived from parent -->
-      <version>3.2</version>
+      <version>3.3</version>
     </dependency>
     <dependency>
       <groupId>org.apache.commons</groupId>
@@ -148,7 +148,7 @@
             <plugin>
               <groupId>org.apache.maven.plugins</groupId>
               <artifactId>maven-plugin-plugin</artifactId>
-              <version>3.2</version>
+              <version>3.3</version>
             </plugin>
             <plugin>
               <groupId>org.apache.maven.plugins</groupId>

Modified: creadur/whisker/trunk/apache-whisker-plugin4maven/src/main/java/org/apache/creadur/whisker/plugin/maven/GenerateMojo.java
URL: http://svn.apache.org/viewvc/creadur/whisker/trunk/apache-whisker-plugin4maven/src/main/java/org/apache/creadur/whisker/plugin/maven/GenerateMojo.java?rev=1619921&r1=1619920&r2=1619921&view=diff
==============================================================================
--- creadur/whisker/trunk/apache-whisker-plugin4maven/src/main/java/org/apache/creadur/whisker/plugin/maven/GenerateMojo.java (original)
+++ creadur/whisker/trunk/apache-whisker-plugin4maven/src/main/java/org/apache/creadur/whisker/plugin/maven/GenerateMojo.java Fri Aug 22 20:12:15 2014
@@ -33,7 +33,7 @@ import org.apache.maven.plugins.annotati
  * Generates licensing related materials such as LICENSE and NOTICE documents
  * for assembled applications. The plugin is not bound to a specific lifecycle phase.
  */
-@Mojo(name = "generate")
+@Mojo(name = "generate", requiresProject = false)
 public class GenerateMojo extends AbstractMojo {
 
     /**