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