Release appc
[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>2.6.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         </dependency>
50         <dependency>
51             <groupId>com.fasterxml.jackson.core</groupId>
52             <artifactId>jackson-annotations</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>org.apache.commons</groupId>
56             <artifactId>commons-lang3</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>com.fasterxml.jackson.core</groupId>
60             <artifactId>jackson-core</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>com.fasterxml.jackson.dataformat</groupId>
64             <artifactId>jackson-dataformat-yaml</artifactId>
65         </dependency>
66         <dependency>
67             <groupId>ch.qos.logback</groupId>
68             <artifactId>logback-classic</artifactId>
69             <version>${logback.version}</version>
70         </dependency>
71         <dependency>
72             <groupId>com.att.eelf</groupId>
73             <artifactId>eelf-core</artifactId>
74             <exclusions>
75                 <exclusion>
76                     <groupId>ch.qos.logback</groupId>
77                     <artifactId>logback-classic</artifactId>
78                 </exclusion>
79             </exclusions>
80         </dependency>
81         <dependency>
82             <groupId>org.onap.ccsdk.sli.adaptors</groupId>
83             <artifactId>sql-resource-provider</artifactId>
84             <version>${ccsdk.sli.adaptors.version}</version>
85             <scope>compile</scope>
86         </dependency>
87         <dependency>
88             <groupId>org.onap.ccsdk.sli.core</groupId>
89             <artifactId>sli-provider</artifactId>
90         </dependency>
91         <dependency>
92             <groupId>org.onap.ccsdk.sli.core</groupId>
93             <artifactId>sli-common</artifactId>
94         </dependency>
95         <dependency>
96             <groupId>com.sun.jersey</groupId>
97             <artifactId>jersey-client</artifactId>
98             <version>1.17</version>
99             <scope>provided</scope>
100         </dependency>
101
102         <dependency>
103             <groupId>junit</groupId>
104             <artifactId>junit</artifactId>
105             <scope>test</scope>
106         </dependency>
107
108         <dependency>
109             <groupId>org.json</groupId>
110             <artifactId>json</artifactId>
111         </dependency>
112     <dependency>
113               <groupId>org.mockito</groupId>
114               <artifactId>mockito-core</artifactId>
115               <scope>test</scope>
116         </dependency>
117     <dependency>
118         <groupId>org.powermock</groupId>
119         <artifactId>powermock-api-mockito</artifactId>
120         <version>1.6.4</version>
121         <scope>test</scope>
122     </dependency>
123     <dependency>
124         <groupId>org.powermock</groupId>
125         <artifactId>powermock-module-junit4</artifactId>
126         <version>1.6.4</version>
127         <scope>test</scope>
128     </dependency>
129         <dependency>
130             <groupId>org.jasypt</groupId>
131             <artifactId>jasypt</artifactId>
132             <version>1.9.2</version>
133             <scope>compile</scope>
134         </dependency>
135         <dependency>
136             <groupId>org.osgi</groupId>
137             <artifactId>org.osgi.core</artifactId>
138             <scope>provided</scope>
139         </dependency>
140
141     </dependencies>
142
143     <build>
144         <plugins>
145             <plugin>
146                 <groupId>org.apache.felix</groupId>
147                 <artifactId>maven-bundle-plugin</artifactId>
148                 <version>${bundle.plugin.version}</version>
149                 <extensions>true</extensions>
150                 <configuration>
151                     <instructions>
152                         <Bundle-SymbolicName>org.onap.appc.flow.controller</Bundle-SymbolicName>
153                         <Bundle-Activator>org.onap.appc.flow.controller.FlowControllerActivator</Bundle-Activator>
154                         <Export-Package>org.onap.appc.flow.controller</Export-Package>
155                         <Import-Package>groovy.lang;resolution:=optional,
156                             org.codehaus.groovy.*;resolution:=optional,*</Import-Package>
157                         <Embed-Dependency>eelf-core,logback-core,logback-classic</Embed-Dependency>
158                         <DynamicImport-Package>*</DynamicImport-Package>
159                     </instructions>
160                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
161                 </configuration>
162             </plugin>
163         </plugins>
164     </build>
165     <version>1.6.0</version>
166 </project>