1ef623cacd2e8d45ac0bbe053bafd1636786a9dd
[appc.git] / appc-dg / appc-dg-shared / appc-dg-ssh / 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>1.5.0-SNAPSHOT</version>
28         <relativePath />
29     </parent>
30     <groupId>org.onap.appc</groupId>
31         <artifactId>appc-dg-ssh</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                         <exclusions>
40                           <exclusion>
41                             <groupId>com.fasterxml.jackson.core</groupId>
42                             <artifactId>jackson-databind</artifactId>
43                           </exclusion>
44                        </exclusions>
45                 </dependency>
46                 <dependency>
47                         <groupId>org.onap.appc</groupId>
48                         <artifactId>appc-ssh-adapter-api</artifactId>
49                         <version>${project.version}</version>
50                         <scope>provided</scope>
51                 </dependency>
52                 <dependency>
53                         <groupId>org.onap.appc</groupId>
54                         <artifactId>appc-dg-common</artifactId>
55                         <version>${project.version}</version>
56                         <scope>provided</scope>
57                 </dependency>
58
59                 <dependency>
60                         <groupId>org.onap.ccsdk.sli.core</groupId>
61                         <artifactId>sli-common</artifactId>
62                         <scope>compile</scope>
63                 </dependency>
64
65                 <dependency>
66                         <groupId>junit</groupId>
67                         <artifactId>junit</artifactId>
68                         <scope>test</scope>
69                 </dependency>
70                 <dependency>
71                         <groupId>org.onap.appc</groupId>
72                         <artifactId>appc-ssh-adapter-tests</artifactId>
73                         <version>${project.version}</version>
74                         <scope>test</scope>
75                 </dependency>
76                 <dependency>
77                     <groupId>com.fasterxml.jackson.core</groupId>
78                     <artifactId>jackson-databind</artifactId>
79                     <version>2.8.11.3</version>
80                 </dependency>
81         </dependencies>
82
83         <build>
84                 <plugins>
85                         <plugin>
86                                 <groupId>org.apache.felix</groupId>
87                                 <artifactId>maven-bundle-plugin</artifactId>
88                                 <extensions>true</extensions>
89                                 <configuration>
90                                         <instructions>
91                                                 <Bundle-SymbolicName>appc-dg-ssh</Bundle-SymbolicName>
92                                                 <Export-Package>org.onap.appc.dg.ssh</Export-Package>
93                                                 <Private-Package>org.onap.appc.dg.ssh.impl.*</Private-Package>
94                                                 <Import-Package>
95                                                         *;resolution:=optional
96                                                 </Import-Package>
97                                                 <!--Embed-Dependency>eelf-core,logback-core,logback-classic;scope=compile|runtime;inline=false</Embed-Dependency-->
98                                                 <Embed-Transitive>true</Embed-Transitive>
99                                                 <_removeheaders>Import-Service</_removeheaders>
100                                         </instructions>
101                                 </configuration>
102                         </plugin>
103                 </plugins>
104         </build>
105         <version>1.5.0-SNAPSHOT</version>
106 </project>