blob: d236c3e968c760222cbc853526a739d2d6b21ce9 [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>
Patrick Brady07567592017-12-13 11:09:30 -08006 <groupId>org.onap.appc</groupId>
Skip Wonnell9296b762017-08-15 17:26:38 -05007 <artifactId>appc-config-flow-controller</artifactId>
Jessica Wagantall65367992017-11-16 17:22:13 -08008 <version>1.3.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>
George, Lina (lg941u)55f9e7d2018-01-08 16:38:33 -050075
Skip Wonnell9296b762017-08-15 17:26:38 -050076 <dependency>
77 <groupId>org.json</groupId>
78 <artifactId>json</artifactId>
79 </dependency>
George, Lina (lg941u)55f9e7d2018-01-08 16:38:33 -050080 <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>
Skip Wonnell9296b762017-08-15 17:26:38 -0500103
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>
Patrick Brady07567592017-12-13 11:09:30 -0800115 <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>
Skip Wonnell9296b762017-08-15 17:26:38 -0500118 <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>
George, Lina (lg941u)55f9e7d2018-01-08 16:38:33 -0500127 <!--This plugin's configuration is used to store Eclipse m2e settings
Skip Wonnell9296b762017-08-15 17:26:38 -0500128 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>