ensure we create parent path if not here

git-svn-id: https://svn.apache.org/repos/asf/archiva/trunk@1231933 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Olivier Lamy 2012-01-16 11:22:20 +00:00
parent 4b9478cf75
commit 6d21a16b92
1 changed files with 18 additions and 0 deletions

View File

@ -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>