blob: e76d42dae75fea70fcb7ab5609cbe8092d380c53 [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>
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
80 </dependencies>
81
82 <build>
83 <plugins>
84 <plugin>
85 <groupId>org.apache.felix</groupId>
86 <artifactId>maven-bundle-plugin</artifactId>
87 <version>${bundle.plugin.version}</version>
88 <extensions>true</extensions>
89 <configuration>
90 <instructions>
91 <Bundle-SymbolicName>org.openecomp.appc.flow.controller</Bundle-SymbolicName>
92 <Bundle-Activator>org.openecomp.appc.flow.controller.FlowControllerActivator</Bundle-Activator>
93 <Export-Package>org.openecomp.appc.flow.controller</Export-Package>
94 <Import-Package>*</Import-Package>
95 <DynamicImport-Package>*</DynamicImport-Package>
96 </instructions>
97 <manifestLocation>${project.basedir}/src/main/resources/META-INF</manifestLocation>
98 </configuration>
99 </plugin>
100 </plugins>
101 <pluginManagement>
102 <plugins>
103 <!--This plugin's configuration is used to store Eclipse m2e settings
104 only. It has no influence on the Maven build itself. -->
105 <plugin>
106 <groupId>org.eclipse.m2e</groupId>
107 <artifactId>lifecycle-mapping</artifactId>
108 <version>1.0.0</version>
109 <configuration>
110 <lifecycleMappingMetadata>
111 <pluginExecutions>
112 <pluginExecution>
113 <pluginExecutionFilter>
114 <groupId>
115 com.brocade.developer
116 </groupId>
117 <artifactId>
118 providermodule-plugin
119 </artifactId>
120 <versionRange>
121 [1.2.0.100-SNAPSHOT,)
122 </versionRange>
123 <goals>
124 <goal>process</goal>
125 </goals>
126 </pluginExecutionFilter>
127 <action>
128 <ignore />
129 </action>
130 </pluginExecution>
131 </pluginExecutions>
132 </lifecycleMappingMetadata>
133 </configuration>
134 </plugin>
135 </plugins>
136 </pluginManagement>
137 </build>
138</project>