diff options
author | Haibin Huang <haibin.huang@intel.com> | 2019-08-28 19:51:31 +0800 |
---|---|---|
committer | Haibin Huang <haibin.huang@intel.com> | 2019-08-29 10:22:48 +0800 |
commit | f75e4c22cb928d11bd78f15b45b1c42098e588d4 (patch) | |
tree | 2bb6072e9890fc5874a79058be997f8bc6a51b02 /starlingx/pom.xml | |
parent | 3f9d312fabb805bb16e89b662d5c70efe91c6b79 (diff) |
update starlingx plugin to python3
Issue-ID: MULTICLOUD-794
Signed-off-by: Haibin Huang <haibin.huang@intel.com>
Change-Id: I41d11465d24ea4d15f37db2146d7a77998f535f0
Diffstat (limited to 'starlingx/pom.xml')
-rw-r--r-- | starlingx/pom.xml | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/starlingx/pom.xml b/starlingx/pom.xml index db0cbdd2..b11267a0 100644 --- a/starlingx/pom.xml +++ b/starlingx/pom.xml @@ -125,17 +125,28 @@ <executions> <execution> <id>copy-resources</id> - <phase>validate</phase> + <phase>install</phase> <goals> <goal>copy-resources</goal> </goals> <configuration> + <overwrite>true</overwrite> + <nonFilteredFileExtensions> + <nonFilteredFileExtension>zip</nonFilteredFileExtension> + </nonFilteredFileExtensions> <outputDirectory>${project.basedir}/docker_target</outputDirectory> <resources> <resource> <directory>${project.basedir}/docker</directory> <filtering>true</filtering> </resource> + <resource> + <directory>${project.basedir}/target</directory> + <filtering>true</filtering> + <includes> + <include>*.zip</include> + </includes> + </resource> </resources> </configuration> </execution> |