blob: d543f2ee907062b7b7995b25b484ab1b513b0f16 [file] [log] [blame]
Ramya Balaji31540f82018-01-08 12:40:57 -05001<?xml version="1.0" encoding="UTF-8"?>
2<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
Patrick Bradya6fbd202019-01-22 14:19:54 -08006 Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
Ramya Balaji31540f82018-01-08 12:40:57 -05007 ================================================================================
8 Copyright (C) 2017 Amdocs
9 =============================================================================
10 Licensed under the Apache License, Version 2.0 (the "License");
11 you may not use this file except in compliance with the License.
12 You may obtain a copy of the License at
13
14 http://www.apache.org/licenses/LICENSE-2.0
15
16 Unless required by applicable law or agreed to in writing, software
17 distributed under the License is distributed on an "AS IS" BASIS,
18 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19 See the License for the specific language governing permissions and
20 limitations under the License.
21
Ramya Balaji31540f82018-01-08 12:40:57 -050022 ============LICENSE_END=========================================================
23 -->
24<project xmlns="http://maven.apache.org/POM/4.0.0"
25 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
26 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
27 <modelVersion>4.0.0</modelVersion>
28 <parent>
Patrick Brady32229082018-08-09 12:05:53 -070029 <groupId>org.onap.appc.parent</groupId>
30 <artifactId>binding-parent</artifactId>
Patrick Brady19ae7802019-01-08 12:25:10 -080031 <version>1.5.0-SNAPSHOT</version>
Patrick Brady32229082018-08-09 12:05:53 -070032 <relativePath />
Ramya Balaji31540f82018-01-08 12:40:57 -050033 </parent>
Patrick Brady32229082018-08-09 12:05:53 -070034 <groupId>org.onap.appc</groupId>
Ramya Balaji31540f82018-01-08 12:40:57 -050035
36 <artifactId>appc-dg-mdsal-bundle</artifactId>
37 <packaging>bundle</packaging>
38
39 <properties>
40 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
41 <licenseDir>${project.parent.parent.parent.basedir}</licenseDir>
42 </properties>
43
44 <build>
45 <plugins>
46 <plugin>
47 <groupId>org.apache.felix</groupId>
48 <artifactId>maven-bundle-plugin</artifactId>
49 <version>${bundle.plugin.version}</version>
50 <extensions>true</extensions>
51 <configuration>
52 <instructions>
53 <Export-Package>org.onap.appc.mdsal.*</Export-Package>
54 <Import-Package>*;resolution:=optional</Import-Package>
55 <DynamicImport-Package>*</DynamicImport-Package>
56 <Embed-Transitive>true</Embed-Transitive>
57 </instructions>
58 </configuration>
59 </plugin>
Ramya Balaji31540f82018-01-08 12:40:57 -050060 </plugins>
61 </build>
62
63 <dependencies>
64 <dependency>
65 <groupId>junit</groupId>
66 <artifactId>junit</artifactId>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
Michal Kabaj70228962018-02-01 14:45:28 +010070 <groupId>org.mockito</groupId>
71 <artifactId>mockito-core</artifactId>
72 </dependency>
73 <dependency>
74 <groupId>org.powermock</groupId>
75 <artifactId>powermock-api-mockito</artifactId>
76 </dependency>
77 <dependency>
78 <groupId>org.powermock</groupId>
79 <artifactId>powermock-module-junit4</artifactId>
80 </dependency>
81 <dependency>
Patrick Brady92461672019-02-27 13:41:53 -080082 <groupId>org.javassist</groupId>
83 <artifactId>javassist</artifactId>
84 <version>3.22.0-GA</version>
85 <scope>test</scope>
86 </dependency>
87 <dependency>
Ramya Balaji31540f82018-01-08 12:40:57 -050088 <groupId>org.opendaylight.controller</groupId>
89 <artifactId>config-api</artifactId>
90 </dependency>
91 <dependency>
92 <groupId>org.opendaylight.controller</groupId>
Ramya Balaji31540f82018-01-08 12:40:57 -050093 <artifactId>sal-common-util</artifactId>
94 </dependency>
95 <dependency>
96 <artifactId>sal-test-model</artifactId>
97 <groupId>org.opendaylight.controller</groupId>
98 <scope>test</scope>
99 </dependency>
100 <dependency>
Patrick Brady32229082018-08-09 12:05:53 -0700101 <groupId>org.apache.httpcomponents</groupId>
102 <artifactId>httpcore</artifactId>
103 <version>${apache.httpcomponents.version}</version>
104 </dependency>
105 <dependency>
Joss Armstrong8fee66a2019-01-08 22:00:43 +0000106 <groupId>org.apache.httpcomponents</groupId>
107 <artifactId>httpclient</artifactId>
108 <version>${apache.httpcomponents.version}</version>
109 <scope>test</scope>
110 </dependency>
111 <dependency>
Ramya Balaji31540f82018-01-08 12:40:57 -0500112 <groupId>org.onap.ccsdk.sli.core</groupId>
113 <artifactId>sli-common</artifactId>
114 <scope>compile</scope>
115 <!-- Added exclusion to prevent missing dependency issue on dblib -->
116 <exclusions>
117 <exclusion>
118 <groupId>org.onap.ccsdk.sli.core</groupId>
119 <artifactId>dblib-provider</artifactId>
120 </exclusion>
121 </exclusions>
122 </dependency>
123
124 <dependency>
125 <groupId>org.onap.ccsdk.sli.core</groupId>
126 <artifactId>sli-provider</artifactId>
127 <scope>compile</scope>
128 <!-- Added exclusion to prevent missing dependency issue on dblib -->
129 <exclusions>
130 <exclusion>
131 <groupId>org.onap.ccsdk.sli.core</groupId>
132 <artifactId>dblib-provider</artifactId>
133 </exclusion>
134 </exclusions>
135 </dependency>
136
137 <dependency>
138 <groupId>org.onap.appc</groupId>
Patrick Brady32229082018-08-09 12:05:53 -0700139 <artifactId>appc-common-bundle</artifactId>
Ramya Balaji31540f82018-01-08 12:40:57 -0500140 <version>${project.version}</version>
141 </dependency>
142 <dependency>
143 <groupId>org.onap.appc</groupId>
144 <artifactId>appc-dg-mdsal-model</artifactId>
145 <version>${project.version}</version>
146 </dependency>
147 <dependency>
148 <groupId>commons-io</groupId>
149 <artifactId>commons-io</artifactId>
150 </dependency>
151 </dependencies>
Patrick Bradyccd67e92018-11-12 12:14:11 -0800152 <version>1.5.0-SNAPSHOT</version>
Ramya Balaji31540f82018-01-08 12:40:57 -0500153</project>