Updates to config flow-controller bundle
[appc.git] / appc-config / appc-flow-controller / provider / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
3     xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
4     <modelVersion>4.0.0</modelVersion>
5     <parent>
6         <groupId>org.onap.appc</groupId>
7         <artifactId>appc-config-flow-controller</artifactId>
8         <version>1.3.0-SNAPSHOT</version>
9     </parent>
10     <artifactId>appc-config-flow-controller-provider</artifactId>
11     <packaging>bundle</packaging>
12     <name>Flow Executor - Provider</name>
13     <url>http://maven.apache.org</url>
14
15     <dependencies>
16         <dependency>
17             <groupId>equinoxSDK381</groupId>
18             <artifactId>org.eclipse.osgi</artifactId>
19             <version>${equinox.osgi.version}</version>
20         </dependency>
21         <dependency>
22             <groupId>org.onap.ccsdk.sli.core</groupId>
23             <artifactId>sli-provider</artifactId>
24         </dependency>
25         <dependency>
26             <groupId>commons-io</groupId>
27             <artifactId>commons-io</artifactId>
28         </dependency>
29         <dependency>
30             <groupId>com.fasterxml.jackson.core</groupId>
31             <artifactId>jackson-databind</artifactId>
32         </dependency>
33         <dependency>
34             <groupId>com.fasterxml.jackson.core</groupId>
35             <artifactId>jackson-annotations</artifactId>
36         </dependency>
37         <dependency>
38             <groupId>com.fasterxml.jackson.core</groupId>
39             <artifactId>jackson-core</artifactId>
40         </dependency>
41         <dependency>
42             <groupId>com.fasterxml.jackson.dataformat</groupId>
43             <artifactId>jackson-dataformat-yaml</artifactId>
44         </dependency>
45         <dependency>
46             <groupId>com.att.eelf</groupId>
47             <artifactId>eelf-core</artifactId>
48         </dependency>
49         <dependency>
50             <groupId>org.onap.ccsdk.sli.adaptors</groupId>
51             <artifactId>sql-resource-provider</artifactId>
52             <version>${ccsdk.sli.adaptors.version}</version>
53             <scope>compile</scope>
54         </dependency>
55         <dependency>
56             <groupId>org.onap.ccsdk.sli.core</groupId>
57             <artifactId>sli-provider</artifactId>
58         </dependency>
59         <dependency>
60             <groupId>org.onap.ccsdk.sli.core</groupId>
61             <artifactId>sli-common</artifactId>
62         </dependency>
63         <dependency>
64             <groupId>com.sun.jersey</groupId>
65             <artifactId>jersey-client</artifactId>
66             <version>1.17</version>
67             <scope>provided</scope>
68         </dependency>
69
70         <dependency>
71             <groupId>junit</groupId>
72             <artifactId>junit</artifactId>
73             <scope>test</scope>
74         </dependency>
75
76         <dependency>
77             <groupId>org.json</groupId>
78             <artifactId>json</artifactId>
79         </dependency>
80     <dependency>
81               <groupId>org.mockito</groupId>
82               <artifactId>mockito-core</artifactId>
83               <scope>test</scope>
84         </dependency>
85     <dependency>
86         <groupId>org.powermock</groupId>
87         <artifactId>powermock-api-mockito</artifactId>
88         <version>1.6.4</version>
89         <scope>test</scope>
90     </dependency>
91     <dependency>
92         <groupId>org.powermock</groupId>
93         <artifactId>powermock-module-junit4</artifactId>
94         <version>1.6.4</version>
95         <scope>test</scope>
96     </dependency>
97         <dependency>
98             <groupId>org.jasypt</groupId>
99             <artifactId>jasypt</artifactId>
100             <version>1.9.2</version>
101             <scope>compile</scope>
102         </dependency>
103
104     </dependencies>
105
106     <build>
107         <plugins>
108             <plugin>
109                 <groupId>org.apache.felix</groupId>
110                 <artifactId>maven-bundle-plugin</artifactId>
111                 <version>${bundle.plugin.version}</version>
112                 <extensions>true</extensions>
113                 <configuration>
114                     <instructions>
115                         <Bundle-SymbolicName>org.onap.appc.flow.controller</Bundle-SymbolicName>
116                         <Bundle-Activator>org.onap.appc.flow.controller.FlowControllerActivator</Bundle-Activator>
117                         <Export-Package>org.onap.appc.flow.controller</Export-Package>
118                         <Import-Package>*</Import-Package>
119                         <DynamicImport-Package>*</DynamicImport-Package>
120                     </instructions>
121                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
122                 </configuration>
123             </plugin>
124         </plugins>
125         <pluginManagement>
126             <plugins>
127                 <!--This plugin's configuration is used to store Eclipse m2e settings
128                     only. It has no influence on the Maven build itself. -->
129                 <plugin>
130                     <groupId>org.eclipse.m2e</groupId>
131                     <artifactId>lifecycle-mapping</artifactId>
132                     <version>1.0.0</version>
133                     <configuration>
134                         <lifecycleMappingMetadata>
135                             <pluginExecutions>
136                                 <pluginExecution>
137                                     <pluginExecutionFilter>
138                                         <groupId>
139                                             com.brocade.developer
140                                         </groupId>
141                                         <artifactId>
142                                             providermodule-plugin
143                                         </artifactId>
144                                         <versionRange>
145                                             [1.2.0.100-SNAPSHOT,)
146                                         </versionRange>
147                                         <goals>
148                                             <goal>process</goal>
149                                         </goals>
150                                     </pluginExecutionFilter>
151                                     <action>
152                                         <ignore />
153                                     </action>
154                                 </pluginExecution>
155                             </pluginExecutions>
156                         </lifecycleMappingMetadata>
157                     </configuration>
158                 </plugin>
159             </plugins>
160         </pluginManagement>
161     </build>
162 </project>