blob: b362a1e1bcd965686857b0675a3a28f7493d07ce [file] [log] [blame]
Patrick Brady57b5eef2017-02-10 15:00:49 -08001<?xml version="1.0" encoding="UTF-8"?>
Skip Wonnell463f70e2018-01-12 10:00:59 -06002<!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
John McClunga8027392018-06-13 15:49:08 -04006 Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
Skip Wonnell463f70e2018-01-12 10:00:59 -06007 Copyright (C) 2017 Amdocs
8 ================================================================================
9 Licensed under the Apache License, Version 2.0 (the "License");
10 you may not use this file except in compliance with the License.
11 You may obtain a copy of the License at
12
13 http://www.apache.org/licenses/LICENSE-2.0
14
15 Unless required by applicable law or agreed to in writing, software
16 distributed under the License is distributed on an "AS IS" BASIS,
17 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18 See the License for the specific language governing permissions and
19 limitations under the License.
20 ============LICENSE_END=========================================================
Skip Wonnell463f70e2018-01-12 10:00:59 -060021 -->
Patrick Brady57b5eef2017-02-10 15:00:49 -080022<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">
23 <modelVersion>4.0.0</modelVersion>
Patrick Brady32229082018-08-09 12:05:53 -070024 <parent>
25 <groupId>org.onap.appc.parent</groupId>
26 <artifactId>binding-parent</artifactId>
Patrick Brady9d380082018-10-09 11:32:38 -070027 <version>1.4.0</version>
Patrick Brady32229082018-08-09 12:05:53 -070028 <relativePath />
29 </parent>
30 <groupId>org.onap.appc</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080031 <artifactId>appc-dg-netconf</artifactId>
32 <packaging>bundle</packaging>
33
34 <dependencies>
35 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080036 <groupId>org.onap.appc</groupId>
Patrick Brady32229082018-08-09 12:05:53 -070037 <artifactId>appc-common-bundle</artifactId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080038 <version>${project.version}</version>
39 </dependency>
40 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080041 <groupId>org.onap.appc</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080042 <artifactId>appc-netconf-adapter-bundle</artifactId>
43 <version>${project.version}</version>
44 <scope>compile</scope>
45 </dependency>
46 <dependency>
Patrick Brady07567592017-12-13 11:09:30 -080047 <groupId>org.onap.appc</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080048 <artifactId>appc-dg-common</artifactId>
49 <version>${project.version}</version>
50 <scope>compile</scope>
51 </dependency>
52 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070053 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080054 <artifactId>sli-common</artifactId>
55 <scope>compile</scope>
56 </dependency>
57 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070058 <groupId>org.onap.ccsdk.sli.core</groupId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080059 <artifactId>sli-provider</artifactId>
60 <scope>compile</scope>
61 </dependency>
62 <dependency>
63 <groupId>junit</groupId>
64 <artifactId>junit</artifactId>
65 <scope>test</scope>
66 </dependency>
67
68 <dependency>
69 <groupId>org.mockito</groupId>
70 <artifactId>mockito-core</artifactId>
71 <scope>test</scope>
72
73 </dependency>
74 <dependency>
75 <groupId>org.powermock</groupId>
76 <artifactId>powermock-api-mockito</artifactId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080077 <scope>test</scope>
78
79 </dependency>
80 <dependency>
81 <groupId>org.powermock</groupId>
82 <artifactId>powermock-module-junit4</artifactId>
Patrick Brady57b5eef2017-02-10 15:00:49 -080083 <scope>test</scope>
84 </dependency>
85
86
87
88 </dependencies>
89
90 <build>
91 <plugins>
92 <plugin>
93 <groupId>org.apache.felix</groupId>
94 <artifactId>maven-bundle-plugin</artifactId>
95 <extensions>true</extensions>
96 <configuration>
97 <instructions>
98 <Bundle-SymbolicName>appc-dg-netconf</Bundle-SymbolicName>
Patrick Brady07567592017-12-13 11:09:30 -080099 <Export-Package>org.onap.appc.dg.netconf</Export-Package>
100 <Private-Package>org.onap.appc.dg.netconf.impl.*</Private-Package>
Patrick Bradyc7d00752017-06-01 10:45:37 -0700101 <Import-Package>
102 *;resolution:=optional
103 </Import-Package>
104 <!--Embed-Dependency>eelf-core,logback-core,logback-classic;scope=compile|runtime;inline=false</Embed-Dependency-->
Patrick Brady57b5eef2017-02-10 15:00:49 -0800105 <Embed-Transitive>true</Embed-Transitive>
Patrick Brady32229082018-08-09 12:05:53 -0700106 <_removeheaders>Import-Service</_removeheaders>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800107 </instructions>
108 </configuration>
109 </plugin>
110 </plugins>
111 </build>
Patrick Bradyc23c9a02018-11-19 13:37:50 -0800112 <version>1.4.3-SNAPSHOT</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800113</project>