blob: 14ab6883842545f71e78c251c554671cdaa01a20 [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 -->
Timoney, Dan (dt5972)9b0742c2022-10-24 12:46:51 -040025
herbertd77d01b2020-01-30 10:15:11 +010026<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 -050027 <modelVersion>4.0.0</modelVersion>
herbertd77d01b2020-01-30 10:15:11 +010028
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050029 <parent>
30 <groupId>org.onap.ccsdk.parent</groupId>
31 <artifactId>odlparent-lite</artifactId>
Timoney, Dan (dt5972)18a3e302022-10-28 10:12:30 -040032 <version>2.5.0</version>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050033 <relativePath/>
34 </parent>
herbertd77d01b2020-01-30 10:15:11 +010035
Ravi Pendurtycbac4382021-02-03 16:19:39 +010036 <groupId>org.onap.ccsdk.features.sdnr.wt</groupId>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050037 <artifactId>sdnr-wt-data-provider-installer</artifactId>
Timoney, Dan (dt5972)18a3e302022-10-28 10:12:30 -040038 <version>1.5.0-SNAPSHOT</version>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050039 <packaging>pom</packaging>
herbertd77d01b2020-01-30 10:15:11 +010040
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050041 <name>ccsdk-features :: ${project.artifactId}</name>
herbertd77d01b2020-01-30 10:15:11 +010042
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050043 <properties>
44 <application.name>sdnr-wt-data-provider</application.name>
45 <include.transitive.dependencies>false</include.transitive.dependencies>
46 </properties>
herbertd77d01b2020-01-30 10:15:11 +010047
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050048 <dependencies>
49 <dependency>
Michael DÜrrefa0febc2021-06-30 08:26:04 +020050 <groupId>${project.groupId}</groupId>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050051 <artifactId>${application.name}-feature</artifactId>
52 <version>${project.version}</version>
53 <type>xml</type>
54 <classifier>features</classifier>
55 <exclusions>
56 <exclusion>
57 <groupId>*</groupId>
58 <artifactId>*</artifactId>
59 </exclusion>
60 </exclusions>
61 </dependency>
62 <dependency>
Michael DÜrrefa0febc2021-06-30 08:26:04 +020063 <groupId>${project.groupId}</groupId>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050064 <artifactId>${application.name}-provider</artifactId>
65 <version>${project.version}</version>
66 </dependency>
Michael Dürreee75b192020-02-26 06:41:50 +010067 <dependency>
Michael DÜrrefa0febc2021-06-30 08:26:04 +020068 <groupId>${project.groupId}</groupId>
Michael Dürreee75b192020-02-26 06:41:50 +010069 <artifactId>${application.name}-setup</artifactId>
70 <version>${project.version}</version>
71 </dependency>
Ravi Pendurty01653672021-07-26 12:42:00 +053072 <dependency>
73 <groupId>com.highstreet-technologies.opendaylight</groupId>
74 <artifactId>odl-ready</artifactId>
75 </dependency>
Michael Dürre34f89fa2022-08-31 08:46:55 +020076 <dependency>
77 <groupId>com.zaxxer</groupId>
78 <artifactId>HikariCP</artifactId>
79 </dependency>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050080 </dependencies>
herbertd77d01b2020-01-30 10:15:11 +010081
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -050082 <build>
83 <plugins>
84 <plugin>
85 <artifactId>maven-assembly-plugin</artifactId>
86 <executions>
87 <execution>
88 <id>maven-repo-zip</id>
89 <goals>
90 <goal>single</goal>
91 </goals>
92 <phase>package</phase>
93 <configuration>
94 <attach>true</attach>
95 <finalName>stage/${application.name}-${project.version}</finalName>
96 <descriptors>
97 <descriptor>src/assembly/assemble_mvnrepo_zip.xml</descriptor>
98 </descriptors>
99 <appendAssemblyId>true</appendAssemblyId>
100 </configuration>
101 </execution>
102 </executions>
103 </plugin>
104 <plugin>
105 <groupId>org.apache.maven.plugins</groupId>
106 <artifactId>maven-dependency-plugin</artifactId>
107 <executions>
108 <execution>
109 <id>copy-nested-dependencies</id>
110 <goals>
111 <goal>copy-dependencies</goal>
112 </goals>
113 <phase>prepare-package</phase>
114 <configuration>
115 <transitive>true</transitive>
116 <outputDirectory>${project.build.directory}/assembly/system</outputDirectory>
117 <overWriteReleases>false</overWriteReleases>
118 <overWriteSnapshots>true</overWriteSnapshots>
119 <overWriteIfNewer>true</overWriteIfNewer>
120 <useRepositoryLayout>true</useRepositoryLayout>
121 <addParentPoms>false</addParentPoms>
122 <copyPom>false</copyPom>
123 </configuration>
124 </execution>
125 </executions>
126 </plugin>
Singal, Kapil (ks220y)6ff6ed92020-02-03 09:31:39 -0500127 </plugins>
128 </build>
herbertd77d01b2020-01-30 10:15:11 +0100129</project>