807b52b5bf0bb74abe6aaa3e6eab562c4b6d0d34
[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 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   ECOMP is a trademark and service mark of AT&T Intellectual Property.
22   -->
23 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
24     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</groupId>
28         <artifactId>appc-config-flow-controller</artifactId>
29         <version>1.3.0-SNAPSHOT</version>
30     </parent>
31     <artifactId>appc-config-flow-controller-provider</artifactId>
32     <packaging>bundle</packaging>
33     <name>Flow Executor - Provider</name>
34     <url>http://maven.apache.org</url>
35
36     <dependencies>
37         <dependency>
38             <groupId>equinoxSDK381</groupId>
39             <artifactId>org.eclipse.osgi</artifactId>
40             <version>${equinox.osgi.version}</version>
41         </dependency>
42         <dependency>
43             <groupId>org.onap.ccsdk.sli.core</groupId>
44             <artifactId>sli-provider</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>commons-io</groupId>
48             <artifactId>commons-io</artifactId>
49         </dependency>
50         <dependency>
51             <groupId>com.fasterxml.jackson.core</groupId>
52             <artifactId>jackson-databind</artifactId>
53         </dependency>
54         <dependency>
55             <groupId>com.fasterxml.jackson.core</groupId>
56             <artifactId>jackson-annotations</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>com.att.eelf</groupId>
68             <artifactId>eelf-core</artifactId>
69         </dependency>
70         <dependency>
71             <groupId>org.onap.ccsdk.sli.adaptors</groupId>
72             <artifactId>sql-resource-provider</artifactId>
73             <version>${ccsdk.sli.adaptors.version}</version>
74             <scope>compile</scope>
75         </dependency>
76         <dependency>
77             <groupId>org.onap.ccsdk.sli.core</groupId>
78             <artifactId>sli-provider</artifactId>
79         </dependency>
80         <dependency>
81             <groupId>org.onap.ccsdk.sli.core</groupId>
82             <artifactId>sli-common</artifactId>
83         </dependency>
84         <dependency>
85             <groupId>com.sun.jersey</groupId>
86             <artifactId>jersey-client</artifactId>
87             <version>1.17</version>
88             <scope>provided</scope>
89         </dependency>
90
91         <dependency>
92             <groupId>junit</groupId>
93             <artifactId>junit</artifactId>
94             <scope>test</scope>
95         </dependency>
96
97         <dependency>
98             <groupId>org.json</groupId>
99             <artifactId>json</artifactId>
100         </dependency>
101     <dependency>
102               <groupId>org.mockito</groupId>
103               <artifactId>mockito-core</artifactId>
104               <scope>test</scope>
105         </dependency>
106     <dependency>
107         <groupId>org.powermock</groupId>
108         <artifactId>powermock-api-mockito</artifactId>
109         <version>1.6.4</version>
110         <scope>test</scope>
111     </dependency>
112     <dependency>
113         <groupId>org.powermock</groupId>
114         <artifactId>powermock-module-junit4</artifactId>
115         <version>1.6.4</version>
116         <scope>test</scope>
117     </dependency>
118         <dependency>
119             <groupId>org.jasypt</groupId>
120             <artifactId>jasypt</artifactId>
121             <version>1.9.2</version>
122             <scope>compile</scope>
123         </dependency>
124
125     </dependencies>
126
127     <build>
128         <plugins>
129             <plugin>
130                 <groupId>org.apache.felix</groupId>
131                 <artifactId>maven-bundle-plugin</artifactId>
132                 <version>${bundle.plugin.version}</version>
133                 <extensions>true</extensions>
134                 <configuration>
135                     <instructions>
136                         <Bundle-SymbolicName>org.onap.appc.flow.controller</Bundle-SymbolicName>
137                         <Bundle-Activator>org.onap.appc.flow.controller.FlowControllerActivator</Bundle-Activator>
138                         <Export-Package>org.onap.appc.flow.controller</Export-Package>
139                         <Import-Package>*</Import-Package>
140                         <DynamicImport-Package>*</DynamicImport-Package>
141                     </instructions>
142                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
143                 </configuration>
144             </plugin>
145         </plugins>
146     </build>
147 </project>