Author: dvittor
Date: Wed Aug  5 13:30:04 2015
New Revision: 1694209

URL: http://svn.apache.org/r1694209
Log:
Fixed mvn test issue - [ERROR] Failed to execute goal 
org.apache.maven.plugins:maven-dependency-plugin:2.8:unpack(unpack-wikipages-private)
 on project jspwiki-war: Artifact has not been packaged yet. When used on 
reactor artifact, unpack should be executed after packaging: see MDEP-98. -> 
[Help 1]

Modified:
    jspwiki/trunk/jspwiki-war/pom.xml

Modified: jspwiki/trunk/jspwiki-war/pom.xml
URL: 
http://svn.apache.org/viewvc/jspwiki/trunk/jspwiki-war/pom.xml?rev=1694209&r1=1694208&r2=1694209&view=diff
==============================================================================
--- jspwiki/trunk/jspwiki-war/pom.xml (original)
+++ jspwiki/trunk/jspwiki-war/pom.xml Wed Aug  5 13:30:04 2015
@@ -385,7 +385,7 @@
           <!-- Unpack the JSP Wiki Pages -->
           <execution>
             <id>unpack-wikipages-private</id>
-            <phase>generate-resources</phase>
+            <phase>package</phase>
             <goals>
               <goal>unpack</goal>
             </goals>


Reply via email to