blob: 20e551fafb44e95bdd7bef8f6d3c2bb7750a8657 [file] [log] [blame]
Sandeep Shah4fdab1f2020-03-02 10:31:48 -06001<?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 -->
22
23<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">
24 <modelVersion>4.0.0</modelVersion>
25
26 <parent>
27 <groupId>org.onap.ccsdk.parent</groupId>
28 <artifactId>odlparent-lite</artifactId>
Dan Timoney1bd16a42020-11-25 16:13:30 -050029 <version>2.1.0</version>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -060030 <relativePath/>
31 </parent>
32
33 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
34 <artifactId>CMNotify-installer</artifactId>
Dan Timoney1bd16a42020-11-25 16:13:30 -050035 <version>1.1.1-SNAPSHOT</version>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -060036 <packaging>pom</packaging>
37
38 <name>ccsdk-features :: sdnr-northbound :: ${project.artifactId}</name>
39
40 <properties>
41 <application.name>CMNotify</application.name>
42 <include.transitive.dependencies>false</include.transitive.dependencies>
43 </properties>
44
45 <dependencies>
46
47 <dependency>
48 <groupId>org.onap.ccsdk.features.sdnr.northbound</groupId>
49 <artifactId>${application.name}-feature</artifactId>
50 <version>${project.version}</version>
51 <type>xml</type>
52 <classifier>features</classifier>
53 <exclusions>
54 <exclusion>
55 <groupId>*</groupId>
56 <artifactId>*</artifactId>
57 </exclusion>
58 </exclusions>
59 </dependency>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -060060 <dependency>
61 <groupId>${project.groupId}</groupId>
62 <artifactId>CMNotify-provider</artifactId>
63 <version>${project.version}</version>
64 </dependency>
Sandeep Shah4fdab1f2020-03-02 10:31:48 -060065 </dependencies>
66
67 <build>
68 <plugins>
69 <plugin>
70 <artifactId>maven-assembly-plugin</artifactId>
71 <executions>
72 <execution>
73 <id>maven-repo-zip</id>
74 <goals>
75 <goal>single</goal>
76 </goals>
77 <phase>package</phase>
78 <configuration>
79 <attach>true</attach>
80 <finalName>stage/${application.name}-${project.version}</finalName>
81 <descriptors>
82 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
83 </descriptors>
84 <appendAssemblyId>true</appendAssemblyId>
85 </configuration>
86 </execution>
87 </executions>
88 </plugin>
89 <plugin>
90 <groupId>org.apache.maven.plugins</groupId>
91 <artifactId>maven-dependency-plugin</artifactId>
92 <executions>
93 <execution>
94 <id>copy-dependencies</id>
95 <goals>
96 <goal>copy-dependencies</goal>
97 </goals>
98 <phase>prepare-package</phase>
99 <configuration>
100 <transitive>false</transitive>
101 <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
102 <overWriteReleases>false</overWriteReleases>
103 <overWriteSnapshots>true</overWriteSnapshots>
104 <overWriteIfNewer>true</overWriteIfNewer>
105 <useRepositoryLayout>true</useRepositoryLayout>
106 <addParentPoms>false</addParentPoms>
107 <copyPom>false</copyPom>
108 <includeArtifactIds>CMNotify-model,CMNotify-provider,CMNotify-feature</includeArtifactIds>
109 <scope>provided</scope>
110 </configuration>
111 </execution>
112 </executions>
113 </plugin>
114 </plugins>
115 </build>
116</project>