blob: f93d3e745314b9a19584d31cd5f76e1c4601353a [file] [log] [blame]
Skip Wonnell9296b762017-08-15 17:26:38 -05001<?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>
Patrick Bradyed9fd622017-11-07 11:59:14 -08008 <version>1.2.0-SNAPSHOT</version>
Skip Wonnell9296b762017-08-15 17:26:38 -05009 </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>
Patrick Brady76706002017-09-04 21:37:25 -070022 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnell9296b762017-08-15 17:26:38 -050023 <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>
Patrick Brady76706002017-09-04 21:37:25 -070050 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
Skip Wonnell9296b762017-08-15 17:26:38 -050051 <artifactId>sql-resource-provider</artifactId>
Patrick Brady76706002017-09-04 21:37:25 -070052 <version>${ccsdk.sli.adaptors.version}</version>
Skip Wonnell9296b762017-08-15 17:26:38 -050053 <scope>compile</scope>
54 </dependency>
55 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070056 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnell9296b762017-08-15 17:26:38 -050057 <artifactId>sli-provider</artifactId>
58 </dependency>
59 <dependency>
Patrick Brady76706002017-09-04 21:37:25 -070060 <groupId>org.onap.ccsdk.sli.core</groupId>
Skip Wonnell9296b762017-08-15 17:26:38 -050061 <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>
Anand Chaturvedi96119e62017-08-24 00:10:17 -040080 <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>
Patrick Brady76706002017-09-04 21:37:25 -070088 <version>1.6.4</version>
Anand Chaturvedi96119e62017-08-24 00:10:17 -040089 <scope>test</scope>
90 </dependency>
91 <dependency>
92 <groupId>org.powermock</groupId>
93 <artifactId>powermock-module-junit4</artifactId>
Patrick Brady76706002017-09-04 21:37:25 -070094 <version>1.6.4</version>
Anand Chaturvedi96119e62017-08-24 00:10:17 -040095 <scope>test</scope>
96 </dependency>
Skip Wonnell9296b762017-08-15 17:26:38 -050097
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>