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