Release appc
[appc.git] / appc-inbound / appc-artifact-handler / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3 ============LICENSE_START=======================================================
4 ONAP : APPC
5 ================================================================================
6 Copyright (C) 2017-2019 AT&T Intellectual Property. All rights reserved.
7 ================================================================================
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
22 ============LICENSE_END=========================================================
23 -->
24 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
25         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
26         <modelVersion>4.0.0</modelVersion>
27         <parent>
28                 <groupId>org.onap.appc.parent</groupId>
29                 <artifactId>binding-parent</artifactId>
30                 <version>2.6.1</version>
31                 <relativePath />
32         </parent>
33         <groupId>org.onap.appc</groupId>
34         <artifactId>appc-artifact-handler-provider</artifactId>
35         <packaging>bundle</packaging>
36
37         <build>
38                 <plugins>
39                         <plugin>
40                                 <groupId>org.apache.felix</groupId>
41                                 <artifactId>maven-bundle-plugin</artifactId>
42                                 <extensions>true</extensions>
43                                 <configuration>
44                                         <instructions>
45                                                 <Bundle-SymbolicName>org.onap.appc.artifact.handler</Bundle-SymbolicName>
46                                                 <Export-Package>org.onap.appc.artifact.handler,org.opendaylight.controller.config.yang.config.artifact-handler_provider.impl</Export-Package>
47                                                 <Import-Package>com.google.common.base,com.google.common.collect,!com.google,!org.apache.commons.configuration,*;resolution:=optional</Import-Package>
48                                                 <Embed-Dependency>commons-configuration,guava,jackson-databind,jackson-annotations,jackson-core,jackson-dataformat-yaml,json</Embed-Dependency>
49                                         </instructions>
50                                 </configuration>
51                         </plugin>
52                 </plugins>
53         </build>
54
55         <dependencies>
56                 <dependency>
57                         <groupId>org.onap.appc</groupId>
58                         <artifactId>appc-artifact-handler-model</artifactId>
59                         <version>${project.version}</version>
60                 </dependency>
61                 <dependency>
62                         <groupId>org.opendaylight.controller</groupId>
63                         <artifactId>config-api</artifactId>
64                 </dependency>
65                 <dependency>
66                         <groupId>org.onap.appc</groupId>
67                         <artifactId>appc-yang-generator</artifactId>
68                         <version>${project.version}</version>
69                 </dependency>
70                 <dependency>
71                         <groupId>org.opendaylight.controller</groupId>
72                         <artifactId>sal-binding-api</artifactId>
73                         </dependency>
74                 <dependency>
75                         <groupId>org.opendaylight.mdsal</groupId>
76                         <artifactId>yang-binding</artifactId>
77                         </dependency>
78                 <dependency>
79                         <groupId>org.opendaylight.controller</groupId>
80                         <artifactId>sal-common-util</artifactId>
81                         </dependency>
82                 <dependency>
83                         <groupId>org.onap.ccsdk.sli.core</groupId>
84                         <artifactId>sli-common</artifactId>
85                 </dependency>
86                 <dependency>
87                         <groupId>org.onap.ccsdk.sli.core</groupId>
88                         <artifactId>sli-provider</artifactId>
89                 </dependency>
90                 <dependency>
91                         <groupId>commons-configuration</groupId>
92                         <artifactId>commons-configuration</artifactId>
93                         <version>1.10</version>
94                 </dependency>
95                 <dependency>
96                         <groupId>org.onap.appc</groupId>
97                         <artifactId>appc-config-params-provider</artifactId>
98                         <version>${project.version}</version>
99                 </dependency>
100                 <dependency>
101                         <artifactId>sal-test-model</artifactId>
102                         <groupId>org.opendaylight.controller</groupId>
103                         <scope>test</scope>
104                         </dependency>
105                 <dependency>
106                         <groupId>com.att.eelf</groupId>
107                         <artifactId>eelf-core</artifactId>
108                 </dependency>
109                 <dependency>
110                         <groupId>junit</groupId>
111                         <artifactId>junit</artifactId>
112                         <scope>test</scope>
113                 </dependency>
114                 <dependency>
115                         <groupId>org.apache.commons</groupId>
116                         <artifactId>commons-lang3</artifactId>
117                 </dependency>
118                 <dependency>
119                         <groupId>org.json</groupId>
120                         <artifactId>json</artifactId>
121                 </dependency>
122                 <dependency>
123                         <groupId>org.onap.ccsdk.sli.adaptors</groupId>
124                         <artifactId>sql-resource-provider</artifactId>
125                         <version>${ccsdk.sli.adaptors.version}</version>
126                         <scope>compile</scope>
127                 </dependency>
128                 <dependency>
129                         <groupId>org.powermock</groupId>
130                         <artifactId>powermock-api-mockito</artifactId>
131                         <scope>test</scope>
132                 </dependency>
133                 <dependency>
134                         <groupId>org.mockito</groupId>
135                         <artifactId>mockito-core</artifactId>
136                         <scope>test</scope>
137                 </dependency>
138                 <dependency>
139                         <groupId>com.jcraft</groupId>
140                         <artifactId>jsch</artifactId>
141                         <version>0.1.54</version>
142          </dependency>
143         </dependencies>
144         <version>1.6.3</version>
145 </project>