blob: a822d3d0844a79cf2ffb073b71915671bb090899 [file] [log] [blame]
herberte6d0d672019-12-14 01:05:47 +01001<?xml version="1.0" encoding="UTF-8"?>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -05002<!--
3 ~ ============LICENSE_START=======================================================
4 ~ ONAP : ccsdk features
5 ~ ================================================================================
6 ~ Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
7 ~ ================================================================================
8 ~ Licensed under the Apache License, Version 2.0 (the "License");
9 ~ you may not use this file except in compliance with the License.
10 ~ You may obtain a copy of the License at
11 ~
12 ~ http://www.apache.org/licenses/LICENSE-2.0
13 ~
14 ~ Unless required by applicable law or agreed to in writing, software
15 ~ distributed under the License is distributed on an "AS IS" BASIS,
16 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
17 ~ See the License for the specific language governing permissions and
18 ~ limitations under the License.
19 ~ ============LICENSE_END=======================================================
20 ~
21 -->
22
herberte6d0d672019-12-14 01:05:47 +010023<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 -050024 <modelVersion>4.0.0</modelVersion>
herberte6d0d672019-12-14 01:05:47 +010025
26 <parent>
27 <groupId>org.onap.ccsdk.parent</groupId>
28 <artifactId>odlparent-lite</artifactId>
Dan Timoney92037092020-08-06 15:28:15 -040029 <version>2.0.1-SNAPSHOT</version>
herberte6d0d672019-12-14 01:05:47 +010030 <relativePath/>
31 </parent>
32
herberte6d0d672019-12-14 01:05:47 +010033 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
herbert05ef0232020-02-01 16:00:00 +010034 <artifactId>odlux-top</artifactId>
Dan Timoney92037092020-08-06 15:28:15 -040035 <version>1.0.1-SNAPSHOT</version>
herberte6d0d672019-12-14 01:05:47 +010036 <packaging>pom</packaging>
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050037
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050038 <name>ccsdk-features :: ${project.artifactId}</name>
herberte6d0d672019-12-14 01:05:47 +010039
40 <modules>
41 <module>framework</module>
42 <module>core</module>
43 <module>apps/apiDemo</module>
44 <module>apps/connectApp</module>
45 <module>apps/demoApp</module>
46 <module>apps/faultApp</module>
47 <module>apps/helpApp</module>
48 <module>apps/inventoryApp</module>
49 <module>apps/mediatorApp</module>
50 <module>apps/maintenanceApp</module>
51 <module>apps/minimumApp</module>
52 <module>apps/performanceHistoryApp</module>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050053 <module>apps/eventLogApp</module>
herberte6d0d672019-12-14 01:05:47 +010054 <module>apps/configurationApp</module>
Aijana Schumann4bd84be2020-08-27 09:01:53 +020055 <module>apps/linkCalculationApp</module>
herberte6d0d672019-12-14 01:05:47 +010056 <module>apps/app-feature</module>
57 <module>apps/app-installer</module>
Aijana Schumann4bd84be2020-08-27 09:01:53 +020058 <module>installer</module>
herberte6d0d672019-12-14 01:05:47 +010059 </modules>
60
Singal, Kapil (ks220y)df195942019-12-12 15:24:53 -050061 <build>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050062 <plugins>
63 <plugin>
64 <groupId>org.codehaus.mojo</groupId>
65 <artifactId>exec-maven-plugin</artifactId>
66 <executions>
67 <execution><!-- Run our version calculation script -->
68 <id>Clean node and node_modules</id>
69 <phase>package</phase>
70 <goals>
71 <goal>exec</goal>
72 </goals>
73 <configuration>
74 <executable>rm</executable>
75 <arguments>
76 <argument>-r</argument>
77 <argument>node_modules</argument>
78 </arguments>
79 </configuration>
80 </execution>
81 </executions>
82 </plugin>
83 </plugins>
84 </build>
herberte6d0d672019-12-14 01:05:47 +010085</project>