4cb525713b14a872e97d8d2f7fee14cece97b8d0
[appc.git] / appc-dg / appc-dg-shared / appc-dg-netconf / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ============LICENSE_START=======================================================
4   ONAP : APPC
5   ================================================================================
6   Copyright (C) 2017-2018 AT&T Intellectual Property. All rights reserved.
7   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=========================================================
21   -->
22 <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>
24         <parent>
25                 <groupId>org.onap.appc</groupId>
26                 <artifactId>appc-dg-shared</artifactId>
27                 <version>1.4.0-SNAPSHOT</version>
28         </parent>
29         <artifactId>appc-dg-netconf</artifactId>
30         <packaging>bundle</packaging>
31
32         <dependencies>
33                 <dependency>
34                         <groupId>org.onap.appc</groupId>
35                         <artifactId>appc-common</artifactId>
36                         <version>${project.version}</version>
37                 </dependency>
38                 <dependency>
39                         <groupId>org.onap.appc</groupId>
40                         <artifactId>appc-netconf-adapter-bundle</artifactId>
41                         <version>${project.version}</version>
42                         <scope>compile</scope>
43                 </dependency>
44                 <dependency>
45                         <groupId>org.onap.appc</groupId>
46                         <artifactId>appc-dg-common</artifactId>
47                         <version>${project.version}</version>
48                         <scope>compile</scope>
49                 </dependency>
50                 <dependency>
51                         <groupId>org.onap.ccsdk.sli.core</groupId>
52                         <artifactId>sli-common</artifactId>
53                         <scope>compile</scope>
54                 </dependency>
55                 <dependency>
56                         <groupId>org.onap.ccsdk.sli.core</groupId>
57                         <artifactId>sli-provider</artifactId>
58                         <scope>compile</scope>
59                 </dependency>
60                 <dependency>
61                         <groupId>junit</groupId>
62                         <artifactId>junit</artifactId>
63                         <scope>test</scope>
64                 </dependency>
65
66                 <dependency>
67                         <groupId>org.mockito</groupId>
68                         <artifactId>mockito-core</artifactId>
69                         <scope>test</scope>
70
71                 </dependency>
72                 <dependency>
73                         <groupId>org.powermock</groupId>
74                         <artifactId>powermock-api-mockito</artifactId>
75                         <scope>test</scope>
76
77                 </dependency>
78                 <dependency>
79                         <groupId>org.powermock</groupId>
80                         <artifactId>powermock-module-junit4</artifactId>
81                         <scope>test</scope>
82                 </dependency>
83
84
85
86         </dependencies>
87
88         <build>
89                 <plugins>
90                         <plugin>
91                                 <groupId>org.apache.felix</groupId>
92                                 <artifactId>maven-bundle-plugin</artifactId>
93                                 <extensions>true</extensions>
94                                 <configuration>
95                                         <instructions>
96                                                 <Bundle-SymbolicName>appc-dg-netconf</Bundle-SymbolicName>
97                                                 <Export-Package>org.onap.appc.dg.netconf</Export-Package>
98                                                 <Private-Package>org.onap.appc.dg.netconf.impl.*</Private-Package>
99                                                 <Import-Package>
100                                                         *;resolution:=optional
101                                                 </Import-Package>
102                                                 <!--Embed-Dependency>eelf-core,logback-core,logback-classic;scope=compile|runtime;inline=false</Embed-Dependency-->
103                                                 <Embed-Transitive>true</Embed-Transitive>
104                                         </instructions>
105                                 </configuration>
106                         </plugin>
107                 </plugins>
108         </build>
109 </project>