blob: cac9817aaea71d651392103ba8cd1a84e8134aca [file] [log] [blame]
herberte6d0d672019-12-14 01:05:47 +01001<?xml version="1.0" encoding="UTF-8"?>
2<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -05003 <modelVersion>4.0.0</modelVersion>
herberte6d0d672019-12-14 01:05:47 +01004
5 <parent>
6 <groupId>org.onap.ccsdk.parent</groupId>
7 <artifactId>odlparent-lite</artifactId>
Dan Timoney49035452020-01-30 09:53:35 -05008 <version>1.5.2-SNAPSHOT</version>
herberte6d0d672019-12-14 01:05:47 +01009 <relativePath/>
10 </parent>
11
herberte6d0d672019-12-14 01:05:47 +010012 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050013 <artifactId>sdnr-wt-odlux-top</artifactId>
Dan Timoney49035452020-01-30 09:53:35 -050014 <version>0.7.1-SNAPSHOT</version>
herberte6d0d672019-12-14 01:05:47 +010015 <packaging>pom</packaging>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050016
17 <name>ccsdk-features :: ${project.artifactId}</name>
herberte6d0d672019-12-14 01:05:47 +010018
19 <modules>
20 <module>framework</module>
21 <module>core</module>
22 <module>apps/apiDemo</module>
23 <module>apps/connectApp</module>
24 <module>apps/demoApp</module>
25 <module>apps/faultApp</module>
26 <module>apps/helpApp</module>
27 <module>apps/inventoryApp</module>
28 <module>apps/mediatorApp</module>
29 <module>apps/maintenanceApp</module>
30 <module>apps/minimumApp</module>
31 <module>apps/performanceHistoryApp</module>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050032 <module>apps/eventLogApp</module>
herberte6d0d672019-12-14 01:05:47 +010033 <module>apps/configurationApp</module>
34 <module>apps/app-feature</module>
35 <module>apps/app-installer</module>
36 </modules>
37
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050038 <build>
39 <plugins>
40 <plugin>
41 <groupId>org.codehaus.mojo</groupId>
42 <artifactId>exec-maven-plugin</artifactId>
43 <executions>
44 <execution><!-- Run our version calculation script -->
45 <id>Clean node and node_modules</id>
46 <phase>package</phase>
47 <goals>
48 <goal>exec</goal>
49 </goals>
50 <configuration>
51 <executable>rm</executable>
52 <arguments>
53 <argument>-r</argument>
54 <argument>node_modules</argument>
55 </arguments>
56 </configuration>
57 </execution>
58 </executions>
59 </plugin>
60 </plugins>
61 </build>
herberte6d0d672019-12-14 01:05:47 +010062</project>