diff options
Diffstat (limited to 'openecomp-bdd')
-rw-r--r-- | openecomp-bdd/pom.xml | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/openecomp-bdd/pom.xml b/openecomp-bdd/pom.xml index e73bb69c78..22abfe9f53 100644 --- a/openecomp-bdd/pom.xml +++ b/openecomp-bdd/pom.xml @@ -60,6 +60,27 @@ </executions> </plugin> + + <plugin> + <artifactId>maven-antrun-plugin</artifactId> + <executions> + <execution> + <id>create-reporting-folders</id> + <phase>generate-sources</phase> + <configuration> + <tasks> + <echo message="Generate reports and downloads folders"/> + <mkdir dir="${basedir}/report"/> + <mkdir dir="${basedir}/resources/downloads"/> + </tasks> + </configuration> + <goals> + <goal>run</goal> + </goals> + </execution> + </executions> + </plugin> + <!-- ============================================= --> <!-- Build the UI module node code --> <!-- ============================================= --> |