Added New Junit Cases for APPC Design Services
[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.openecomp.sdnc.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.openecomp.sdnc.adaptors</groupId>
51             <artifactId>sql-resource-provider</artifactId>
52             <scope>compile</scope>
53         </dependency>
54         <dependency>
55             <groupId>org.openecomp.sdnc.core</groupId>
56             <artifactId>sli-provider</artifactId>
57         </dependency>
58         <dependency>
59             <groupId>org.openecomp.sdnc.core</groupId>
60             <artifactId>sli-common</artifactId>
61         </dependency>
62         <dependency>
63             <groupId>com.sun.jersey</groupId>
64             <artifactId>jersey-client</artifactId>
65             <version>1.17</version>
66             <scope>provided</scope>
67         </dependency>
68
69         <dependency>
70             <groupId>junit</groupId>
71             <artifactId>junit</artifactId>
72             <scope>test</scope>
73         </dependency>
74         
75         <dependency>
76             <groupId>org.json</groupId>
77             <artifactId>json</artifactId>
78         </dependency>
79         <dependency> 
80               <groupId>org.mockito</groupId> 
81               <artifactId>mockito-core</artifactId> 
82               <scope>test</scope> 
83         </dependency>
84         <dependency>
85             <groupId>org.powermock</groupId>
86             <artifactId>powermock-api-mockito</artifactId>
87             <version>1.6.2</version>
88             <scope>test</scope>
89         </dependency>
90         <dependency>
91             <groupId>org.powermock</groupId>
92             <artifactId>powermock-module-junit4</artifactId>
93             <version>1.6.2</version>
94             <scope>test</scope>
95         </dependency>
96
97     </dependencies>
98
99     <build>
100         <plugins>
101             <plugin>
102                 <groupId>org.apache.felix</groupId>
103                 <artifactId>maven-bundle-plugin</artifactId>
104                 <version>${bundle.plugin.version}</version>
105                 <extensions>true</extensions>
106                 <configuration>
107                     <instructions>
108                         <Bundle-SymbolicName>org.openecomp.appc.flow.controller</Bundle-SymbolicName>
109                         <Bundle-Activator>org.openecomp.appc.flow.controller.FlowControllerActivator</Bundle-Activator>
110                         <Export-Package>org.openecomp.appc.flow.controller</Export-Package>
111                         <Import-Package>*</Import-Package>
112                         <DynamicImport-Package>*</DynamicImport-Package>
113                     </instructions>
114                     <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
115                 </configuration>
116             </plugin>
117         </plugins>
118         <pluginManagement>
119             <plugins>
120                 <!--This plugin's configuration is used to store Eclipse m2e settings 
121                     only. It has no influence on the Maven build itself. -->
122                 <plugin>
123                     <groupId>org.eclipse.m2e</groupId>
124                     <artifactId>lifecycle-mapping</artifactId>
125                     <version>1.0.0</version>
126                     <configuration>
127                         <lifecycleMappingMetadata>
128                             <pluginExecutions>
129                                 <pluginExecution>
130                                     <pluginExecutionFilter>
131                                         <groupId>
132                                             com.brocade.developer
133                                         </groupId>
134                                         <artifactId>
135                                             providermodule-plugin
136                                         </artifactId>
137                                         <versionRange>
138                                             [1.2.0.100-SNAPSHOT,)
139                                         </versionRange>
140                                         <goals>
141                                             <goal>process</goal>
142                                         </goals>
143                                     </pluginExecutionFilter>
144                                     <action>
145                                         <ignore />
146                                     </action>
147                                 </pluginExecution>
148                             </pluginExecutions>
149                         </lifecycleMappingMetadata>
150                     </configuration>
151                 </plugin>
152             </plugins>
153         </pluginManagement>
154     </build>
155 </project>