upgrade databind artifact
[appc.git] / appc-config / appc-flow-controller / 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   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"
23     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
24     <modelVersion>4.0.0</modelVersion>
25         <parent>
26                 <groupId>org.onap.appc.parent</groupId>
27                 <artifactId>binding-parent</artifactId>
28                 <version>1.5.0-SNAPSHOT</version>
29                 <relativePath />
30         </parent>
31         <groupId>org.onap.appc</groupId>
32     <artifactId>appc-config-flow-controller-provider</artifactId>
33     <packaging>bundle</packaging>
34     <name>Flow Executor - Provider</name>
35     <url>http://maven.apache.org</url>
36
37     <dependencies>
38         <dependency>
39             <groupId>org.onap.ccsdk.sli.core</groupId>
40             <artifactId>sli-provider</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>commons-io</groupId>
44             <artifactId>commons-io</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>com.fasterxml.jackson.core</groupId>
48             <artifactId>jackson-databind</artifactId>
49             <version>2.8.11.3</version>
50         </dependency>
51         <dependency>
52             <groupId>com.fasterxml.jackson.core</groupId>
53             <artifactId>jackson-annotations</artifactId>
54         </dependency>
55         <dependency>
56             <groupId>org.apache.commons</groupId>
57             <artifactId>commons-lang3</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>com.fasterxml.jackson.core</groupId>
61             <artifactId>jackson-core</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>com.fasterxml.jackson.dataformat</groupId>
65             <artifactId>jackson-dataformat-yaml</artifactId>
66         </dependency>
67         <dependency>
68             <groupId>ch.qos.logback</groupId>
69             <artifactId>logback-classic</artifactId>
70             <version>${logback.version}</version>
71         </dependency>
72         <dependency>
73             <groupId>com.att.eelf</groupId>
74             <artifactId>eelf-core</artifactId>
75             <exclusions>
76                 <exclusion>
77                     <groupId>ch.qos.logback</groupId>
78                     <artifactId>logback-classic</artifactId>
79                 </exclusion>
80             </exclusions>
81         </dependency>
82         <dependency>
83             <groupId>org.onap.ccsdk.sli.adaptors</groupId>
84             <artifactId>sql-resource-provider</artifactId>
85             <version>${ccsdk.sli.adaptors.version}</version>
86             <scope>compile</scope>
87         </dependency>
88         <dependency>
89             <groupId>org.onap.ccsdk.sli.core</groupId>
90             <artifactId>sli-provider</artifactId>
91         </dependency>
92         <dependency>
93             <groupId>org.onap.ccsdk.sli.core</groupId>
94             <artifactId>sli-common</artifactId>
95         </dependency>
96         <dependency>
97             <groupId>com.sun.jersey</groupId>
98             <artifactId>jersey-client</artifactId>
99             <version>1.17</version>
100             <scope>provided</scope>
101         </dependency>
102
103         <dependency>
104             <groupId>junit</groupId>
105             <artifactId>junit</artifactId>
106             <scope>test</scope>
107         </dependency>
108
109         <dependency>
110             <groupId>org.json</groupId>
111             <artifactId>json</artifactId>
112         </dependency>
113     <dependency>
114               <groupId>org.mockito</groupId>
115               <artifactId>mockito-core</artifactId>
116               <scope>test</scope>
117         </dependency>
118     <dependency>
119         <groupId>org.powermock</groupId>
120         <artifactId>powermock-api-mockito</artifactId>
121         <version>1.6.4</version>
122         <scope>test</scope>
123     </dependency>
124     <dependency>
125         <groupId>org.powermock</groupId>
126         <artifactId>powermock-module-junit4</artifactId>
127         <version>1.6.4</version>
128         <scope>test</scope>
129     </dependency>
130         <dependency>
131             <groupId>org.jasypt</groupId>
132             <artifactId>jasypt</artifactId>
133             <version>1.9.2</version>
134             <scope>compile</scope>
135         </dependency>
136         <dependency>
137             <groupId>org.osgi</groupId>
138             <artifactId>org.osgi.core</artifactId>
139             <scope>provided</scope>
140         </dependency>
141
142     </dependencies>
143
144     <build>
145         <plugins>
146             <plugin>
147                 <groupId>org.apache.felix</groupId>
148                 <artifactId>maven-bundle-plugin</artifactId>
149                 <version>${bundle.plugin.version}</version>
150                 <extensions>true</extensions>
151                 <configuration>
152                     <instructions>
153                         <Bundle-SymbolicName>org.onap.appc.flow.controller</Bundle-SymbolicName>
154                         <Bundle-Activator>org.onap.appc.flow.controller.FlowControllerActivator</Bundle-Activator>
155                         <Export-Package>org.onap.appc.flow.controller</Export-Package>
156                         <Import-Package>groovy.lang;resolution:=optional,
157                             org.codehaus.groovy.*;resolution:=optional,*</Import-Package>
158                         <Embed-Dependency>eelf-core,logback-core,logback-classic</Embed-Dependency>
159                         <DynamicImport-Package>*</DynamicImport-Package>
160                     </instructions>
161                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
162                 </configuration>
163             </plugin>
164         </plugins>
165     </build>
166     <version>1.5.0-SNAPSHOT</version>
167 </project>