Release appc
[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.parent</groupId>
26         <artifactId>binding-parent</artifactId>
27         <version>2.6.1</version>
28         <relativePath />
29     </parent>
30     <groupId>org.onap.appc</groupId>
31         <artifactId>appc-dg-netconf</artifactId>
32         <packaging>bundle</packaging>
33
34         <dependencies>
35                 <dependency>
36                         <groupId>org.onap.appc</groupId>
37                         <artifactId>appc-common-bundle</artifactId>
38                         <version>${project.version}</version>
39                 </dependency>
40                 <dependency>
41                         <groupId>org.onap.appc</groupId>
42                         <artifactId>appc-netconf-adapter-bundle</artifactId>
43                         <version>${project.version}</version>
44                         <scope>compile</scope>
45                 </dependency>
46                 <dependency>
47                         <groupId>org.onap.appc</groupId>
48                         <artifactId>appc-dg-common</artifactId>
49                         <version>${project.version}</version>
50                         <scope>compile</scope>
51                 </dependency>
52                 <dependency>
53                         <groupId>org.onap.ccsdk.sli.core</groupId>
54                         <artifactId>sli-common</artifactId>
55                         <scope>compile</scope>
56                 </dependency>
57                 <dependency>
58                         <groupId>org.onap.ccsdk.sli.core</groupId>
59                         <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>
77                         <scope>test</scope>
78
79                 </dependency>
80                 <dependency>
81                         <groupId>org.powermock</groupId>
82                         <artifactId>powermock-module-junit4</artifactId>
83                         <scope>test</scope>
84                 </dependency>
85
86                 <dependency>
87                         <groupId>org.javassist</groupId>
88                         <artifactId>javassist</artifactId>
89                         <version>3.22.0-GA</version>
90                         <scope>test</scope>
91                 </dependency>
92
93         </dependencies>
94
95         <build>
96                 <plugins>
97                         <plugin>
98                                 <groupId>org.apache.felix</groupId>
99                                 <artifactId>maven-bundle-plugin</artifactId>
100                                 <extensions>true</extensions>
101                                 <configuration>
102                                         <instructions>
103                                                 <Bundle-SymbolicName>appc-dg-netconf</Bundle-SymbolicName>
104                                                 <Export-Package>org.onap.appc.dg.netconf</Export-Package>
105                                                 <Private-Package>org.onap.appc.dg.netconf.impl.*</Private-Package>
106                                                 <Import-Package>
107                                                         *;resolution:=optional
108                                                 </Import-Package>
109                                                 <!--Embed-Dependency>eelf-core,logback-core,logback-classic;scope=compile|runtime;inline=false</Embed-Dependency-->
110                                                 <Embed-Transitive>true</Embed-Transitive>
111                                                 <_removeheaders>Import-Service</_removeheaders>
112                                         </instructions>
113                                 </configuration>
114                         </plugin>
115                 </plugins>
116         </build>
117         <version>1.6.3</version>
118 </project>