blob: b61ff667a8292f54d62267d403ce9093a5be99d7 [file] [log] [blame]
herbertd77d01b2020-01-30 10:15:11 +01001<?xml version="1.0" encoding="UTF-8"?>
2<!--
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -05003 ~ ============LICENSE_START=======================================================
4 ~ ONAP : ccsdk features
5 ~ ================================================================================
6 ~ Copyright (C) 2018 highstreet technologies GmbH Intellectual Property.
7 ~ All rights reserved.
8 ~ ================================================================================
9 ~ Update Copyright (C) 2020 AT&T Intellectual Property. All rights reserved.
10 ~ ================================================================================
11 ~ Licensed under the Apache License, Version 2.0 (the "License");
12 ~ you may not use this file except in compliance with the License.
13 ~ You may obtain a copy of the License at
14 ~
15 ~ http://www.apache.org/licenses/LICENSE-2.0
16 ~
17 ~ Unless required by applicable law or agreed to in writing, software
18 ~ distributed under the License is distributed on an "AS IS" BASIS,
19 ~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
20 ~ See the License for the specific language governing permissions and
21 ~ limitations under the License.
22 ~ ============LICENSE_END=======================================================
23 ~
24 -->
herbertd77d01b2020-01-30 10:15:11 +010025<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)6ff6ed92020-02-03 09:31:39 -050026 <modelVersion>4.0.0</modelVersion>
herbertd77d01b2020-01-30 10:15:11 +010027
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050028 <parent>
29 <groupId>org.onap.ccsdk.parent</groupId>
30 <artifactId>odlparent-lite</artifactId>
Dan Timoney548d7b82023-02-24 21:03:38 +000031 <version>2.5.3</version>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050032 <relativePath/>
33 </parent>
herbertd77d01b2020-01-30 10:15:11 +010034
Ravi Pendurtycbac4382021-02-03 16:19:39 +010035 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050036 <artifactId>sdnr-wt-data-provider-installer</artifactId>
Dan Timoneyd944abf2023-03-02 07:29:48 -050037 <version>1.5.1-SNAPSHOT</version>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050038 <packaging>pom</packaging>
herbertd77d01b2020-01-30 10:15:11 +010039
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050040 <name>ccsdk-features :: ${project.artifactId}</name>
herbertd77d01b2020-01-30 10:15:11 +010041
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050042 <properties>
43 <application.name>sdnr-wt-data-provider</application.name>
44 <include.transitive.dependencies>false</include.transitive.dependencies>
45 </properties>
herbertd77d01b2020-01-30 10:15:11 +010046
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050047 <dependencies>
48 <dependency>
Michael DÜrrefa0febc2021-06-30 08:26:04 +020049 <groupId>${project.groupId}</groupId>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050050 <artifactId>${application.name}-feature</artifactId>
51 <version>${project.version}</version>
52 <type>xml</type>
53 <classifier>features</classifier>
54 <exclusions>
55 <exclusion>
56 <groupId>*</groupId>
57 <artifactId>*</artifactId>
58 </exclusion>
59 </exclusions>
60 </dependency>
61 <dependency>
Michael DÜrrefa0febc2021-06-30 08:26:04 +020062 <groupId>${project.groupId}</groupId>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050063 <artifactId>${application.name}-provider</artifactId>
64 <version>${project.version}</version>
65 </dependency>
Michael Dürreee75b192020-02-26 06:41:50 +010066 <dependency>
Michael DÜrrefa0febc2021-06-30 08:26:04 +020067 <groupId>${project.groupId}</groupId>
Michael Dürreee75b192020-02-26 06:41:50 +010068 <artifactId>${application.name}-setup</artifactId>
69 <version>${project.version}</version>
70 </dependency>
Ravi Pendurty01653672021-07-26 12:42:00 +053071 <dependency>
72 <groupId>com.highstreet-technologies.opendaylight</groupId>
73 <artifactId>odl-ready</artifactId>
74 </dependency>
Michael Dürre34f89fa2022-08-31 08:46:55 +020075 <dependency>
76 <groupId>com.zaxxer</groupId>
77 <artifactId>HikariCP</artifactId>
78 </dependency>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050079 </dependencies>
herbertd77d01b2020-01-30 10:15:11 +010080
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050081 <build>
82 <plugins>
83 <plugin>
84 <artifactId>maven-assembly-plugin</artifactId>
85 <executions>
86 <execution>
87 <id>maven-repo-zip</id>
88 <goals>
89 <goal>single</goal>
90 </goals>
91 <phase>package</phase>
92 <configuration>
93 <attach>true</attach>
94 <finalName>stage/${application.name}-${project.version}</finalName>
95 <descriptors>
96 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
97 </descriptors>
98 <appendAssemblyId>true</appendAssemblyId>
99 </configuration>
100 </execution>
101 </executions>
102 </plugin>
103 <plugin>
104 <groupId>org.apache.maven.plugins</groupId>
105 <artifactId>maven-dependency-plugin</artifactId>
106 <executions>
107 <execution>
108 <id>copy-nested-dependencies</id>
109 <goals>
110 <goal>copy-dependencies</goal>
111 </goals>
112 <phase>prepare-package</phase>
113 <configuration>
114 <transitive>true</transitive>
115 <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
116 <overWriteReleases>false</overWriteReleases>
117 <overWriteSnapshots>true</overWriteSnapshots>
118 <overWriteIfNewer>true</overWriteIfNewer>
119 <useRepositoryLayout>true</useRepositoryLayout>
120 <addParentPoms>false</addParentPoms>
121 <copyPom>false</copyPom>
122 </configuration>
123 </execution>
124 </executions>
125 </plugin>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -0500126 </plugins>
127 </build>
herbertd77d01b2020-01-30 10:15:11 +0100128</project>