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