Herbert Eiselt | 3d202a0 | 2019-02-11 14:54:12 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Timoney, Dan (dt5972) | 9560e60 | 2019-04-24 16:04:56 -0400 | [diff] [blame] | 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"> |
Herbert Eiselt | 3d202a0 | 2019-02-11 14:54:12 +0100 | [diff] [blame] | 3 | |
Herbert Eiselt | 62e8348 | 2019-03-28 19:00:35 +0100 | [diff] [blame] | 4 | <parent> |
| 5 | <groupId>org.onap.ccsdk.parent</groupId> |
| 6 | <artifactId>odlparent-lite</artifactId> |
Timoney, Dan (dt5972) | d761bb6 | 2019-04-30 14:46:09 -0400 | [diff] [blame] | 7 | <version>1.3.0-SNAPSHOT</version> |
Timoney, Dan (dt5972) | 9560e60 | 2019-04-24 16:04:56 -0400 | [diff] [blame] | 8 | <relativePath/> |
Herbert Eiselt | 62e8348 | 2019-03-28 19:00:35 +0100 | [diff] [blame] | 9 | </parent> |
Herbert Eiselt | 3d202a0 | 2019-02-11 14:54:12 +0100 | [diff] [blame] | 10 | |
| 11 | |
Herbert Eiselt | 62e8348 | 2019-03-28 19:00:35 +0100 | [diff] [blame] | 12 | <modelVersion>4.0.0</modelVersion> |
| 13 | <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> |
| 14 | <artifactId>odlux-top</artifactId> |
Timoney, Dan (dt5972) | f3d5c90 | 2019-05-02 11:43:50 -0400 | [diff] [blame] | 15 | <version>0.5.0-SNAPSHOT</version> |
Herbert Eiselt | 62e8348 | 2019-03-28 19:00:35 +0100 | [diff] [blame] | 16 | <packaging>pom</packaging> |
| 17 | <name>odlux</name> |
Herbert Eiselt | 3d202a0 | 2019-02-11 14:54:12 +0100 | [diff] [blame] | 18 | |
Herbert Eiselt | 62e8348 | 2019-03-28 19:00:35 +0100 | [diff] [blame] | 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> |
Herbert Eiselt | 97fa6d9 | 2019-04-03 17:12:30 +0200 | [diff] [blame] | 32 | <module>apps/configurationApp</module> |
Herbert Eiselt | 62e8348 | 2019-03-28 19:00:35 +0100 | [diff] [blame] | 33 | <module>apps/app-feature</module> |
| 34 | <module>apps/app-installer</module> |
| 35 | </modules> |
| 36 | |
Herbert Eiselt | 1445dab | 2019-06-07 10:36:11 +0200 | [diff] [blame] | 37 | <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 Eiselt | 3d202a0 | 2019-02-11 14:54:12 +0100 | [diff] [blame] | 62 | </project> |