blob: 5c7cb621d77eee8c42df38b1fe855315928a4221 [file] [log] [blame]
Herbert Eiselt3d202a02019-02-11 14:54:12 +01001<?xml version="1.0" encoding="UTF-8"?>
Timoney, Dan (dt5972)9560e602019-04-24 16:04:56 -04002<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">
Herbert Eiselt3d202a02019-02-11 14:54:12 +01003
Herbert Eiselt62e83482019-03-28 19:00:35 +01004 <parent>
5 <groupId>org.onap.ccsdk.parent</groupId>
6 <artifactId>odlparent-lite</artifactId>
Timoney, Dan (dt5972)d761bb62019-04-30 14:46:09 -04007 <version>1.3.0-SNAPSHOT</version>
Timoney, Dan (dt5972)9560e602019-04-24 16:04:56 -04008 <relativePath/>
Herbert Eiselt62e83482019-03-28 19:00:35 +01009 </parent>
Herbert Eiselt3d202a02019-02-11 14:54:12 +010010
11
Herbert Eiselt62e83482019-03-28 19:00:35 +010012 <modelVersion>4.0.0</modelVersion>
13 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
14 <artifactId>odlux-top</artifactId>
Timoney, Dan (dt5972)f3d5c902019-05-02 11:43:50 -040015 <version>0.5.0-SNAPSHOT</version>
Herbert Eiselt62e83482019-03-28 19:00:35 +010016 <packaging>pom</packaging>
17 <name>odlux</name>
Herbert Eiselt3d202a02019-02-11 14:54:12 +010018
Herbert Eiselt62e83482019-03-28 19:00:35 +010019 <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>
Herbert Eiselt97fa6d92019-04-03 17:12:30 +020032 <module>apps/configurationApp</module>
Herbert Eiselt62e83482019-03-28 19:00:35 +010033 <module>apps/app-feature</module>
34 <module>apps/app-installer</module>
35 </modules>
36
Herbert Eiselt1445dab2019-06-07 10:36:11 +020037 <build>
38 <plugins>
39 <plugin>
40 <artifactId>exec-maven-plugin</artifactId>
41 <groupId>org.codehaus.mojo</groupId>
42 <executions>
43 <execution><!-- Run our version calculation script -->
44 <id>Clean node and node_modules</id>
45 <phase>package</phase>
46 <goals>
47 <goal>exec</goal>
48 </goals>
49 <configuration>
50 <executable>rm</executable>
51 <arguments>
52 <argument>-r</argument>
53 <argument>node_modules</argument>
54 </arguments>
55 </configuration>
56 </execution>
57 </executions>
58 </plugin>
59 </plugins>
60 </build>
61
Herbert Eiselt3d202a02019-02-11 14:54:12 +010062</project>