Change to CCSDK and ODL Carbon
[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.openecomp.appc</groupId>
7         <artifactId>appc-config-flow-controller</artifactId>
8         <version>1.1.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
98     </dependencies>
99
100     <build>
101         <plugins>
102             <plugin>
103                 <groupId>org.apache.felix</groupId>
104                 <artifactId>maven-bundle-plugin</artifactId>
105                 <version>${bundle.plugin.version}</version>
106                 <extensions>true</extensions>
107                 <configuration>
108                     <instructions>
109                         <Bundle-SymbolicName>org.openecomp.appc.flow.controller</Bundle-SymbolicName>
110                         <Bundle-Activator>org.openecomp.appc.flow.controller.FlowControllerActivator</Bundle-Activator>
111                         <Export-Package>org.openecomp.appc.flow.controller</Export-Package>
112                         <Import-Package>*</Import-Package>
113                         <DynamicImport-Package>*</DynamicImport-Package>
114                     </instructions>
115                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
116                 </configuration>
117             </plugin>
118         </plugins>
119         <pluginManagement>
120             <plugins>
121                 <!--This plugin's configuration is used to store Eclipse m2e settings 
122                     only. It has no influence on the Maven build itself. -->
123                 <plugin>
124                     <groupId>org.eclipse.m2e</groupId>
125                     <artifactId>lifecycle-mapping</artifactId>
126                     <version>1.0.0</version>
127                     <configuration>
128                         <lifecycleMappingMetadata>
129                             <pluginExecutions>
130                                 <pluginExecution>
131                                     <pluginExecutionFilter>
132                                         <groupId>
133                                             com.brocade.developer
134                                         </groupId>
135                                         <artifactId>
136                                             providermodule-plugin
137                                         </artifactId>
138                                         <versionRange>
139                                             [1.2.0.100-SNAPSHOT,)
140                                         </versionRange>
141                                         <goals>
142                                             <goal>process</goal>
143                                         </goals>
144                                     </pluginExecutionFilter>
145                                     <action>
146                                         <ignore />
147                                     </action>
148                                 </pluginExecution>
149                             </pluginExecutions>
150                         </lifecycleMappingMetadata>
151                     </configuration>
152                 </plugin>
153             </plugins>
154         </pluginManagement>
155     </build>
156 </project>