You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@archiva.apache.org by ol...@apache.org on 2012/01/16 12:22:20 UTC

svn commit: r1231933 - /archiva/trunk/archiva-modules/archiva-web/archiva-webapp-js/pom.xml

Author: olamy
Date: Mon Jan 16 11:22:20 2012
New Revision: 1231933

URL: http://svn.apache.org/viewvc?rev=1231933&view=rev
Log:
ensure we create parent path if not here

Modified:
    archiva/trunk/archiva-modules/archiva-web/archiva-webapp-js/pom.xml

Modified: archiva/trunk/archiva-modules/archiva-web/archiva-webapp-js/pom.xml
URL: http://svn.apache.org/viewvc/archiva/trunk/archiva-modules/archiva-web/archiva-webapp-js/pom.xml?rev=1231933&r1=1231932&r2=1231933&view=diff
==============================================================================
--- archiva/trunk/archiva-modules/archiva-web/archiva-webapp-js/pom.xml (original)
+++ archiva/trunk/archiva-modules/archiva-web/archiva-webapp-js/pom.xml Mon Jan 16 11:22:20 2012
@@ -622,6 +622,24 @@
         </dependencies>
       </plugin>
 
+      <plugin>
+        <groupId>org.apache.maven.plugins</groupId>
+        <artifactId>maven-antrun-plugin</artifactId>
+        <executions>
+          <execution>
+            <phase>generate-resources</phase>
+            <goals>
+              <goal>run</goal>
+            </goals>
+            <configuration>
+              <tasks>
+                <mkdir dir="${project.build.directory}/appserver-base/conf"/>
+              </tasks>
+            </configuration>
+          </execution>
+        </executions>
+      </plugin>
+
     </plugins>
   </build>