herbert | e6d0d67 | 2019-12-14 01:05:47 +0100 | [diff] [blame] | 1 | <?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) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 3 | <modelVersion>4.0.0</modelVersion> |
herbert | e6d0d67 | 2019-12-14 01:05:47 +0100 | [diff] [blame] | 4 | |
| 5 | <parent> |
| 6 | <groupId>org.onap.ccsdk.parent</groupId> |
| 7 | <artifactId>odlparent-lite</artifactId> |
Dan Timoney | 4903545 | 2020-01-30 09:53:35 -0500 | [diff] [blame^] | 8 | <version>1.5.2-SNAPSHOT</version> |
herbert | e6d0d67 | 2019-12-14 01:05:47 +0100 | [diff] [blame] | 9 | <relativePath/> |
| 10 | </parent> |
| 11 | |
herbert | e6d0d67 | 2019-12-14 01:05:47 +0100 | [diff] [blame] | 12 | <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> |
Singal, Kapil (ks220y) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 13 | <artifactId>sdnr-wt-odlux-top</artifactId> |
Dan Timoney | 4903545 | 2020-01-30 09:53:35 -0500 | [diff] [blame^] | 14 | <version>0.7.1-SNAPSHOT</version> |
herbert | e6d0d67 | 2019-12-14 01:05:47 +0100 | [diff] [blame] | 15 | <packaging>pom</packaging> |
Singal, Kapil (ks220y) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 16 | |
| 17 | <name>ccsdk-features :: ${project.artifactId}</name> |
herbert | e6d0d67 | 2019-12-14 01:05:47 +0100 | [diff] [blame] | 18 | |
| 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) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 32 | <module>apps/eventLogApp</module> |
herbert | e6d0d67 | 2019-12-14 01:05:47 +0100 | [diff] [blame] | 33 | <module>apps/configurationApp</module> |
| 34 | <module>apps/app-feature</module> |
| 35 | <module>apps/app-installer</module> |
| 36 | </modules> |
| 37 | |
Singal, Kapil (ks220y) | df19594 | 2019-12-12 15:24:53 -0500 | [diff] [blame] | 38 | <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> |
herbert | e6d0d67 | 2019-12-14 01:05:47 +0100 | [diff] [blame] | 62 | </project> |