diff options
author | dfx1971 <avi.ziv@amdocs.com> | 2018-05-30 15:14:22 +0300 |
---|---|---|
committer | Einav Keidar <einavw@amdocs.com> | 2018-05-30 15:01:18 +0000 |
commit | 5a0a74f55f9661b218faff2f2ba710dc9a4f5443 (patch) | |
tree | 395dedd99870af3bf311f1eebb609a1238f95d08 /openecomp-bdd | |
parent | 4b93ef990cd41e9728b1059295a331e27c307df1 (diff) |
BDD: tests fail if report folder is missing
Change-Id: I523f3a0a3619feace27493e3f7111bcca9e5add9
Issue-ID: SDC-1385
Signed-off-by: dfx1971 <avi.ziv@amdocs.com>
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 --> <!-- ============================================= --> |