diff options
Diffstat (limited to 'sdnr/wt/odlux/pom.xml')
-rw-r--r-- | sdnr/wt/odlux/pom.xml | 27 |
1 files changed, 26 insertions, 1 deletions
diff --git a/sdnr/wt/odlux/pom.xml b/sdnr/wt/odlux/pom.xml index 2f81fa714..1a9e6edaf 100644 --- a/sdnr/wt/odlux/pom.xml +++ b/sdnr/wt/odlux/pom.xml @@ -12,7 +12,7 @@ <modelVersion>4.0.0</modelVersion> <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> <artifactId>odlux-top</artifactId> - <version>0.4.4-SNAPSHOT</version> + <version>0.4.5-SNAPSHOT</version> <packaging>pom</packaging> <name>odlux</name> @@ -34,4 +34,29 @@ <module>apps/app-installer</module> </modules> + <build> + <plugins> + <plugin> + <artifactId>exec-maven-plugin</artifactId> + <groupId>org.codehaus.mojo</groupId> + <executions> + <execution><!-- Run our version calculation script --> + <id>Clean node and node_modules</id> + <phase>package</phase> + <goals> + <goal>exec</goal> + </goals> + <configuration> + <executable>rm</executable> + <arguments> + <argument>-r</argument> + <argument>node_modules</argument> + </arguments> + </configuration> + </execution> + </executions> + </plugin> + </plugins> + </build> + </project> |