Aijana Schumann | 4bd84be | 2020-08-27 09:01:53 +0200 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <!-- |
| 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 | --> |
Michael DÜrre | eb2a7c9 | 2022-03-10 10:39:16 +0100 | [diff] [blame] | 22 | <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"> |
Aijana Schumann | 4bd84be | 2020-08-27 09:01:53 +0200 | [diff] [blame] | 23 | <modelVersion>4.0.0</modelVersion> |
| 24 | |
| 25 | <parent> |
| 26 | <groupId>org.onap.ccsdk.parent</groupId> |
| 27 | <artifactId>odlparent-lite</artifactId> |
Dan Timoney | 8607135 | 2022-11-15 15:35:41 -0500 | [diff] [blame^] | 28 | <version>2.5.1-SNAPSHOT</version> |
Aijana Schumann | 4bd84be | 2020-08-27 09:01:53 +0200 | [diff] [blame] | 29 | <relativePath/> |
| 30 | </parent> |
| 31 | |
| 32 | <groupId>org.onap.ccsdk.features.sdnr.wt</groupId> |
| 33 | <artifactId>sdnr-wt-odlux-installer</artifactId> |
Timoney, Dan (dt5972) | 18a3e30 | 2022-10-28 10:12:30 -0400 | [diff] [blame] | 34 | <version>1.5.0-SNAPSHOT</version> |
Aijana Schumann | 4bd84be | 2020-08-27 09:01:53 +0200 | [diff] [blame] | 35 | <packaging>pom</packaging> |
| 36 | |
| 37 | <name>ccsdk-features :: ${project.artifactId}</name> |
| 38 | <licenses> |
| 39 | <license> |
| 40 | <name>Apache License, Version 2.0</name> |
| 41 | <url>http://www.apache.org/licenses/LICENSE-2.0</url> |
| 42 | </license> |
| 43 | </licenses> |
| 44 | |
| 45 | <properties> |
| 46 | <application.name>sdnr-wt-odlux-installer</application.name> |
| 47 | <include.transitive.dependencies>false</include.transitive.dependencies> |
| 48 | </properties> |
| 49 | |
| 50 | <build> |
| 51 | <plugins> |
| 52 | <plugin> |
| 53 | <artifactId>maven-assembly-plugin</artifactId> |
| 54 | <executions> |
| 55 | <execution> |
| 56 | <id>maven-repo-zip</id> |
| 57 | <goals> |
| 58 | <goal>single</goal> |
| 59 | </goals> |
| 60 | <phase>package</phase> |
| 61 | <configuration> |
| 62 | <attach>true</attach> |
| 63 | <finalName>stage/${application.name}-${project.version}</finalName> |
| 64 | <descriptors> |
| 65 | <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor> |
| 66 | </descriptors> |
| 67 | <appendAssemblyId>true</appendAssemblyId> |
| 68 | </configuration> |
| 69 | </execution> |
| 70 | </executions> |
| 71 | </plugin> |
| 72 | <plugin> |
| 73 | <groupId>org.apache.maven.plugins</groupId> |
| 74 | <artifactId>maven-dependency-plugin</artifactId> |
| 75 | <executions> |
| 76 | <execution> |
| 77 | <id>unpack features</id> |
| 78 | <phase>generate-sources</phase> |
| 79 | <goals> |
| 80 | <goal>unpack</goal> |
| 81 | </goals> |
| 82 | <configuration> |
| 83 | <includes>odlux/**</includes> |
| 84 | <outputDirectory>${project.build.directory}/assembly</outputDirectory> |
| 85 | <artifactItems> |
| 86 | <artifactItem> |
| 87 | <groupId>${project.groupId}</groupId> |
| 88 | <artifactId>sdnr-wt-odlux-framework</artifactId> |
| 89 | <version>${project.version}</version> |
| 90 | <type>jar</type> |
| 91 | <overWrite>false</overWrite> |
| 92 | </artifactItem> |
| 93 | <!-- connectApp --> |
| 94 | <artifactItem> |
| 95 | <groupId>${project.groupId}</groupId> |
| 96 | <artifactId>sdnr-wt-odlux-app-connectApp</artifactId> |
| 97 | <version>${project.version}</version> |
| 98 | <type>jar</type> |
| 99 | <overWrite>false</overWrite> |
| 100 | </artifactItem> |
| 101 | <!-- eventLogApp --> |
| 102 | <artifactItem> |
| 103 | <groupId>${project.groupId}</groupId> |
| 104 | <artifactId>sdnr-wt-odlux-app-eventLogApp</artifactId> |
| 105 | <version>${project.version}</version> |
| 106 | <type>jar</type> |
| 107 | <overWrite>false</overWrite> |
| 108 | </artifactItem> |
| 109 | <!-- helpApp --> |
| 110 | <artifactItem> |
| 111 | <groupId>${project.groupId}</groupId> |
| 112 | <artifactId>sdnr-wt-odlux-app-helpApp</artifactId> |
| 113 | <version>${project.version}</version> |
| 114 | <type>jar</type> |
| 115 | <overWrite>false</overWrite> |
| 116 | </artifactItem> |
| 117 | <!-- maintenanceApp --> |
| 118 | <artifactItem> |
| 119 | <groupId>${project.groupId}</groupId> |
| 120 | <artifactId>sdnr-wt-odlux-app-maintenanceApp</artifactId> |
| 121 | <version>${project.version}</version> |
| 122 | <type>jar</type> |
| 123 | <overWrite>false</overWrite> |
| 124 | </artifactItem> |
| 125 | <!-- minimumApp --> |
Aijana Schumann | 437f674 | 2021-08-04 11:59:18 +0200 | [diff] [blame] | 126 | <!--<artifactItem> |
Aijana Schumann | 4bd84be | 2020-08-27 09:01:53 +0200 | [diff] [blame] | 127 | <groupId>${project.groupId}</groupId> |
| 128 | <artifactId>sdnr-wt-odlux-app-minimumApp</artifactId> |
| 129 | <version>${project.version}</version> |
| 130 | <type>jar</type> |
| 131 | <overWrite>false</overWrite> |
Aijana Schumann | 437f674 | 2021-08-04 11:59:18 +0200 | [diff] [blame] | 132 | </artifactItem>--> |
Aijana Schumann | 4bd84be | 2020-08-27 09:01:53 +0200 | [diff] [blame] | 133 | <!-- configurationApp --> |
| 134 | <artifactItem> |
| 135 | <groupId>${project.groupId}</groupId> |
| 136 | <artifactId>sdnr-wt-odlux-app-configurationApp</artifactId> |
| 137 | <version>${project.version}</version> |
| 138 | <type>jar</type> |
| 139 | <overWrite>false</overWrite> |
| 140 | </artifactItem> |
| 141 | <!-- demoApp --> |
Aijana Schumann | 1a86811 | 2022-02-01 13:18:42 +0100 | [diff] [blame] | 142 | <!--<artifactItem> |
Aijana Schumann | 4bd84be | 2020-08-27 09:01:53 +0200 | [diff] [blame] | 143 | <groupId>${project.groupId}</groupId> |
| 144 | <artifactId>sdnr-wt-odlux-app-demoApp</artifactId> |
| 145 | <version>${project.version}</version> |
| 146 | <type>jar</type> |
| 147 | <overWrite>false</overWrite> |
Aijana Schumann | 1a86811 | 2022-02-01 13:18:42 +0100 | [diff] [blame] | 148 | </artifactItem>--> |
Aijana Schumann | 4bd84be | 2020-08-27 09:01:53 +0200 | [diff] [blame] | 149 | <!-- faultApp --> |
| 150 | <artifactItem> |
| 151 | <groupId>${project.groupId}</groupId> |
| 152 | <artifactId>sdnr-wt-odlux-app-faultApp</artifactId> |
| 153 | <version>${project.version}</version> |
| 154 | <type>jar</type> |
| 155 | <overWrite>false</overWrite> |
| 156 | </artifactItem> |
Aijana Schumann | 4bd84be | 2020-08-27 09:01:53 +0200 | [diff] [blame] | 157 | <!-- inventoryApp --> |
| 158 | <artifactItem> |
| 159 | <groupId>${project.groupId}</groupId> |
| 160 | <artifactId>sdnr-wt-odlux-app-inventoryApp</artifactId> |
| 161 | <version>${project.version}</version> |
| 162 | <type>jar</type> |
| 163 | <overWrite>false</overWrite> |
| 164 | </artifactItem> |
Aijana Schumann | 4bd84be | 2020-08-27 09:01:53 +0200 | [diff] [blame] | 165 | <!-- performanceHistoryApp --> |
| 166 | <artifactItem> |
| 167 | <groupId>${project.groupId}</groupId> |
| 168 | <artifactId>sdnr-wt-odlux-app-performanceHistoryApp</artifactId> |
| 169 | <version>${project.version}</version> |
| 170 | <type>jar</type> |
| 171 | <overWrite>false</overWrite> |
| 172 | </artifactItem> |
| 173 | <!-- helpserver resources --> |
| 174 | <artifactItem> |
| 175 | <groupId>${project.groupId}</groupId> |
| 176 | <artifactId>sdnr-wt-helpserver-provider</artifactId> |
| 177 | <version>${project.version}</version> |
| 178 | <type>jar</type> |
| 179 | <overWrite>false</overWrite> |
| 180 | <includes>help/**</includes> |
| 181 | </artifactItem> |
| 182 | </artifactItems> |
| 183 | </configuration> |
| 184 | </execution> |
| 185 | </executions> |
| 186 | </plugin> |
| 187 | </plugins> |
| 188 | </build> |
| 189 | </project> |