blob: 1c5673e95945095ebc529f36832616edb1c451de [file] [log] [blame]
Patrick Brady57b5eef2017-02-10 15:00:49 -08001<?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" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3 <modelVersion>4.0.0</modelVersion>
4 <parent>
5 <groupId>org.openecomp.sdnc.core</groupId>
6 <artifactId>root</artifactId>
Patrick Brady41144dd2017-03-02 13:09:19 -08007 <version>1.0.0-SNAPSHOT</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -08008 </parent>
9 <packaging>pom</packaging>
10 <groupId>org.openecomp.appc</groupId>
11 <artifactId>appc</artifactId>
Patrick Brady88439692017-02-24 00:04:10 -080012 <version>1.0.0-SNAPSHOT</version>
Patrick Brady57b5eef2017-02-10 15:00:49 -080013 <name>APP-C</name>
14 <description>Construct the Application Controller component for the ECOMP project.</description>
15 <inceptionYear>2015-07-20</inceptionYear>
16 <organization>
17 <name>OpenECOMP</name>
18 </organization>
19 <!-- ================================================================================== -->
20 <!-- Configuration properties -->
21 <!-- ================================================================================== -->
22 <properties>
23 <features-mdsal.version>2.0.2-Beryllium-SR2</features-mdsal.version>
24 <broker-mdsal.version>1.3.2-Beryllium-SR2</broker-mdsal.version>
25 <!-- Properties from parent pom -->
26 <!-- <release-tag>R17.01</release-tag> -->
27 <!-- <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> -->
28 <!-- <bundle.plugin.version>2.5.0</bundle.plugin.version> -->
29 <!-- <java.version.source>1.7</java.version.source> -->
30 <!-- <java.version.target>1.7</java.version.target> -->
31 <!-- <maven.compile.plugin.version>2.5.1</maven.compile.plugin.version> -->
32 <!-- <equinox.osgi.version>3.8.1.v20120830-144521</equinox.osgi.version> -->
33 <!-- <jackson-annotations-version>${jackson.version}</jackson-annotations-version> -->
34 <!-- <jettison.version>1.3.7</jettison.version> -->
35 <!-- <jvnet.jaxb2.version>0.6.4</jvnet.jaxb2.version> -->
36 <!-- <apache.httpcomponents.version>4.4</apache.httpcomponents.version> -->
37 <!-- <antlr.version>4.5.1</antlr.version> -->
38 <!-- <mysql.connector.version>5.1.39</mysql.connector.version> -->
39 <!-- <odl.version>1.6.2-Beryllium-SR2</odl.version> -->
40 <!-- <odl.dlux.version>0.3.2-Beryllium-SR2</odl.dlux.version> -->
41 <odl.yangtools.version>0.8.2-Beryllium-SR2</odl.yangtools.version>
42 <!-- <odl.mdsal.version>1.3.2-Beryllium-SR2</odl.mdsal.version> -->
43 <!-- <odl.mdsal.features.version>2.0.2-Beryllium-SR2</odl.mdsal.features.version> -->
44 <!-- <odl.mdsal.model.version>0.8.2-Beryllium-SR2</odl.mdsal.model.version> -->
45 <!-- <odl.restconf.version>1.3.2-Beryllium-SR2</odl.restconf.version> -->
46 <!-- <odl.yangtools.version>0.8.2-Beryllium-SR2</odl.yangtools.version> -->
47 <!-- <odl.controller.model.version>${odl.mdsal.model.version}</odl.controller.model.version> -->
48 <!-- <odl.controller.config.api.version>0.4.2-Beryllium-SR2</odl.controller.config.api.version> -->
49 <!-- <odl.karaf.empty.distro.version>${odl.version}</odl.karaf.empty.distro.version> -->
50 <!-- <odl.commons.opendaylight.version>${odl.version}</odl.commons.opendaylight.version> -->
51 <!-- <odl.ietf-inet-types.version>2010.09.24.8.2-Beryllium-SR2</odl.ietf-inet-types.version> -->
52 <!-- <odl.ietf-yang-types.version>2010.09.24.8.2-Beryllium-SR2</odl.ietf-yang-types.version> -->
53 <!-- <odl.yang.jmx.generator.version>0.4.2-Beryllium-SR2</odl.yang.jmx.generator.version> -->
54 <!-- <odl.yangtools.yang.maven.plugin.version>${odl.yangtools.version}</odl.yangtools.yang.maven.plugin.version> -->
55 <!-- <features.file>features.xml</features.file> -->
56 <!-- <h2database.version>1.4.186</h2database.version> -->
57 <!-- <jmxGeneratorPath>src/main/yang-gen-config</jmxGeneratorPath> -->
58 <!-- <salGeneratorPath>src/main/yang-gen-sal</salGeneratorPath> -->
59 <!-- <checkstyle.skip>true</checkstyle.skip> -->
60 <!--<sdnc.core.version>(0.0.1,1.9.9]</sdnc.core.version> -->
61 <!-- <sdnc.adaptors.version>(0.0.1,1.9.9]</sdnc.adaptors.version> -->
62 <!-- <sdnctl.aai.service.version>${sdnc.adaptors.version}</sdnctl.aai.service.version> -->
63 <!-- <sdnctl.dblib.version>${sdnc.core.version}</sdnctl.dblib.version> -->
64 <!-- <sdnctl.mdsal.resource.version>${sdnc.adaptors.version}</sdnctl.mdsal.resource.version> -->
65 <!-- <sdnctl.slipluginutils.version>${sdnc.core.version}</sdnctl.slipluginutils.version> -->
66 <!-- Sonar Properties -->
67 <sonar.language>java</sonar.language>
68 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
69 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
70 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
71 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
72 <sonar.projectVersion>${project.version}</sonar.projectVersion>
73 <cdp.pal.version>0.0.1</cdp.pal.version>
74 <eelf.version>0.0.1</eelf.version>
75 <eelf.maven.plugin.version>0.0.1</eelf.maven.plugin.version>
76 <cadi-version>1.3.0</cadi-version>
77 <inno-version>1.2.11</inno-version>
78 <dme2-version>3.1.200</dme2-version>
79 <cambriaClient-version>0.0.1</cambriaClient-version>
80 <!-- OPENECOMP SDNC versions -->
Patrick Brady41144dd2017-03-02 13:09:19 -080081 <sdnctl.sli.version>1.0.0-SNAPSHOT</sdnctl.sli.version>
Patrick Brady57b5eef2017-02-10 15:00:49 -080082 <!--<sdnctl.sli.version>${sdnc.core.version}</sdnctl.sli.version> -->
Patrick Brady41144dd2017-03-02 13:09:19 -080083 <sdnctl.dblib.version>1.0.0-SNAPSHOT</sdnctl.dblib.version>
84 <sdnctl.aai.service.version>1.0.0-SNAPSHOT</sdnctl.aai.service.version>
Patrick Brady57b5eef2017-02-10 15:00:49 -080085 <!-- <jmxGeneratorPath>target/generated-sources/yang-gen-config</jmxGeneratorPath> -->
86 <salGeneratorPath>target/generated-sources/yang-gen-sal</salGeneratorPath>
87 <!-- <OpenStack-API-version>3.3.4</OpenStack-API-version> -->
88 <!-- <commons.lang3.version>3.4</commons.lang3.version> -->
89 <commons.io.version>${commons.lang3.version}</commons.io.version>
90 <!-- <odl.aaa.version>0.3.2-Beryllium-SR2</odl.aaa.version> -->
91 <!-- <odl.bgpcep.version>0.5.2-Beryllium-SR2</odl.bgpcep.version> -->
92 <!-- <odl.branding.version>1.2.2-Beryllium-SR2</odl.branding.version> -->
93 <!-- <odl.commons.opendaylight.version>1.6.2-Beryllium-SR2</odl.commons.opendaylight.version> -->
94 <!-- <odl.config.parent.version>0.4.2-Beryllium-SR2</odl.config.parent.version> -->
95 <!-- <odl.config.version>0.4.2-Beryllium-SR2</odl.config.version> -->
96 <!-- <odl.controller.model.version>1.3.2-Beryllium-SR2</odl.controller.model.version> -->
97 <!-- <odl.dlux.version>0.3.2-Beryllium-SR2</odl.dlux.version> -->
98 <!-- <odl.features.protocol.framework.version>0.7.2-Beryllium-SR2</odl.features.protocol.framework.version> -->
99 <!-- <odl.ganymed.version>1.3.2-Beryllium-SR2</odl.ganymed.version> -->
100 <!-- <odl.ietf-inet-types.version>2010.09.24.8.2-Beryllium-SR2</odl.ietf-inet-types.version> -->
101 <!-- <odl.ietf-ted.version>2013.10.21.8.2-Beryllium-SR2</odl.ietf-ted.version> -->
102 <!-- <odl.ietf-topology-isis.version>2013.10.21.8.2-Beryllium-SR2</odl.ietf-topology-isis.version> -->
103 <!-- <odl.ietf-topology.version>2013.10.21.8.2-Beryllium-SR2</odl.ietf-topology.version> -->
104 <!-- <odl.ietf-yang-types.version>2010.09.24.8.2-Beryllium-SR2</odl.ietf-yang-types.version> -->
105 <!-- <odl.karaf.distro.empty.version>1.6.2-Beryllium-SR2</odl.karaf.distro.empty.version> -->
106 <!-- <odl.karaf.empty.distro.version>1.6.2-Beryllium-SR2</odl.karaf.empty.distro.version> -->
107 <!-- <odl.karaf.resources.version>1.6.2-Beryllium-SR2</odl.karaf.resources.version> -->
108 <!-- <odl.l2-types.model.version>2013.08.27.8.2-Beryllium-SR2</odl.l2-types.model.version> -->
109 <!-- <odl.l2switch.version>0.3.2-Beryllium-SR2</odl.l2switch.version> -->
110 <!-- <odl.controller.mdsal.version>1.3.2-Beryllium-SR2</odl.controller.mdsal.version> -->
111 <!-- <odl.mdsal.version>2.0.2-Beryllium-SR2</odl.mdsal.version> -->
112 <!-- <odl.mdsal.apidoc.version>1.3.2-Beryllium-SR2</odl.mdsal.apidoc.version> -->
113 <!-- <odl.sal.clustering.conf.version>1.3.2-Beryllium-SR2</odl.sal.clustering.conf.version> -->
114 <!-- <odl.net.sf.jung2.version>2.0.1</odl.net.sf.jung2.version> -->
115 <!-- <odl.netconf.parent.version>1.0.2-Beryllium-SR2</odl.netconf.parent.version> -->
116 <!-- <odl.neutron.version>0.6.2-Beryllium-SR2</odl.neutron.version> -->
117 <!-- <odl.openflowjava.version>0.7.2-Beryllium-SR2</odl.openflowjava.version> -->
118 <!-- <odl.openflowplugin.version>0.2.2-Beryllium-SR2</odl.openflowplugin.version> -->
119 <!-- <odl.pax.cdi.version>0.11.0</odl.pax.cdi.version> -->
120 <!-- <odl.restconf.version>1.3.2-Beryllium-SR2</odl.restconf.version> -->
121 <!-- <odl.sal.api.version>0.10.2-Beryllium-SR2</odl.sal.api.version> -->
122 <!-- <odl.sal.connection.api.version>0.3.2-Beryllium-SR2</odl.sal.connection.api.version> -->
123 <!-- <odl.sal.rest.docgen.version>1.3.2-Beryllium-SR2</odl.sal.rest.docgen.version> -->
124 <!-- <odl.yang.jmx.generator.version>0.4.2-Beryllium-SR2</odl.yang.jmx.generator.version> -->
125 <!-- <odl.yangtools.version>0.8.2-Beryllium-SR2</odl.yangtools.version> -->
126 <maven.javadoc.failOnError>false</maven.javadoc.failOnError>
127 <!-- ADDING TO SUPPORT APPC-PROVIDER-MODEL yang-gen-sal FOLDER
128 GENERATION -->
129 <yang.file.directory>src/main/yang</yang.file.directory>
130 </properties>
131 <!-- ================================================================================== -->
132 <!-- Javadoc Generation Plugin -->
133 <!-- ================================================================================== -->
134 <reporting>
135 <plugins>
136 <plugin>
137 <groupId>org.apache.maven.plugins</groupId>
138 <artifactId>maven-javadoc-plugin</artifactId>
139 <version>2.10.4</version>
140 <configuration>
141 <excludePackageNames>org.openecomp.sdnc</excludePackageNames>
142 <failOnError>false</failOnError>
143 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
144 <docletArtifact>
145 <groupId>org.umlgraph</groupId>
146 <artifactId>umlgraph</artifactId>
147 <version>5.6</version>
148 </docletArtifact>
149 <additionalparam>-views</additionalparam>
150 <useStandardDocletOptions>true</useStandardDocletOptions>
151 </configuration>
152 </plugin>
153 </plugins>
154 </reporting>
155 <!-- ================================================================================== -->
156 <!-- Distribution Management Sites-->
157 <!-- ================================================================================== -->
158 <distributionManagement>
159 <!-- This site is used for Javadocs -->
160 <site>
161 <id>app-c-javadoc</id>
Patrick Brady9171e282017-02-21 13:20:34 -0800162 <url>dav:https://nexus.openecomp.org/repository/app-c-javadoc/${project.version}</url>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800163 </site>
164 </distributionManagement>
165 <!-- ================================================================================== -->
166 <!-- The SCM repository we are using -->
167 <!-- ================================================================================== -->
168 <!-- <scm>
169 <connection></connection>
170 <developerConnection></developerConnection>
171 <url></url>
172 <tag></tag>
173 </scm> -->
174 <!-- ================================================================================== -->
175 <!-- Define plugin repositories -->
176 <!-- ================================================================================== -->
177 <pluginRepositories>
178 <pluginRepository>
179 <id>opendaylight-mirror</id>
180 <name>opendaylight-mirror</name>
181 <url>https://nexus.opendaylight.org/content/repositories/public/</url>
182 <releases>
183 <enabled>true</enabled>
184 <updatePolicy>never</updatePolicy>
185 </releases>
186 <snapshots>
187 <enabled>false</enabled>
188 </snapshots>
189 </pluginRepository>
190 <pluginRepository>
191 <id>opendaylight-snapshot</id>
192 <name>opendaylight-snapshot</name>
193 <url>https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
194 <releases>
195 <enabled>false</enabled>
196 </releases>
197 <snapshots>
198 <enabled>true</enabled>
199 </snapshots>
200 </pluginRepository>
201 <!-- Black Duck plugin dependencies -->
202 <pluginRepository>
203 <id>JCenter</id>
204 <name>JCenter Repository</name>
205 <url>http://jcenter.bintray.com</url>
206 </pluginRepository>
207 <pluginRepository>
208 <id>Restlet</id>
209 <name>Restlet Repository</name>
210 <url>http://maven.restlet.com</url>
211 </pluginRepository>
212 </pluginRepositories>
213 <!-- ================================================================================== -->
214 <!-- Define project-wide dependencies -->
215 <!-- ================================================================================== -->
216 <dependencyManagement>
217 <dependencies>
218 <!-- ODL -->
219 <dependency>
220 <groupId>org.opendaylight.controller</groupId>
221 <artifactId>config-api</artifactId>
222 <version>${odl.controller.config.api.version}</version>
223 </dependency>
224 <dependency>
225 <groupId>org.opendaylight.controller</groupId>
226 <artifactId>sal-binding-config</artifactId>
227 <!-- <version>1.3.2-Beryllium-SR2</version> -->
228 <version>${odl.mdsal.version}</version>
229 </dependency>
230 <dependency>
231 <groupId>org.opendaylight.controller</groupId>
232 <artifactId>sal-binding-api</artifactId>
233 <version>${odl.mdsal.version}</version>
234 <!-- <version>1.3.2-Beryllium-SR2</version> -->
235 </dependency>
236 <dependency>
237 <groupId>org.opendaylight.controller</groupId>
238 <artifactId>sal-test-model</artifactId>
239 <!-- <version>1.3.2-Beryllium-SR2</version> -->
240 <version>${odl.mdsal.version}</version>
241 </dependency>
242 <dependency>
243 <groupId>org.opendaylight.netconf</groupId>
244 <artifactId>sal-rest-connector</artifactId>
245 <!-- <version>1.3.2-Beryllium-SR2</version> -->
246 <version>${odl.mdsal.version}</version>
247 </dependency>
248 <dependency>
249 <groupId>org.opendaylight.controller</groupId>
250 <artifactId>sal-binding-broker-impl</artifactId>
251 <!-- <version>1.3.2-Beryllium-SR2</version> -->
252 <version>${odl.mdsal.version}</version>
253 </dependency>
254 <dependency>
255 <groupId>org.opendaylight.controller</groupId>
256 <artifactId>sal-common-util</artifactId>
257 <version>${odl.mdsal.version}</version>
258 <!-- <version>1.3.2-Beryllium-SR2</version> -->
259 </dependency>
260 <dependency>
261 <groupId>org.opendaylight.mdsal</groupId>
262 <artifactId>yang-binding</artifactId>
263 <version>${odl.yangtools.version}</version>
264 </dependency>
265 <dependency>
266 <groupId>org.opendaylight.yangtools</groupId>
267 <artifactId>yang-common</artifactId>
268 <version>${odl.yangtools.version}</version>
269 </dependency>
270 <dependency>
271 <groupId>org.opendaylight.mdsal.model</groupId>
272 <artifactId>ietf-inet-types</artifactId>
273 <version>${odl.ietf-inet-types.version}</version>
274 </dependency>
275 <dependency>
276 <groupId>org.opendaylight.mdsal.model</groupId>
277 <artifactId>ietf-yang-types</artifactId>
278 <version>${odl.ietf-yang-types.version}</version>
279 </dependency>
280 <dependency>
281 <groupId>org.opendaylight.controller</groupId>
282 <artifactId>features-mdsal</artifactId>
283 <version>1.3.2-Beryllium-SR2</version>
284 <classifier>features</classifier>
285 <type>xml</type>
286 </dependency>
287 <dependency>
288 <groupId>org.opendaylight.mdsal</groupId>
289 <artifactId>features-mdsal</artifactId>
290 <version>2.0.2-Beryllium-SR2</version>
291 <classifier>features</classifier>
292 <type>xml</type>
293 </dependency>
294 <dependency>
295 <groupId>org.opendaylight.controller</groupId>
296 <artifactId>opendaylight-karaf-empty</artifactId>
297 <version>${odl.karaf.empty.distro.version}</version>
298 <type>zip</type>
299 </dependency>
300 <!-- CURRENTLY DOES NOT EXIST IN 3.0. Replacement? -->
301 <!-- Required for launching the feature tests -->
302 <!-- <dependency> -->
303 <!-- <groupId>org.opendaylight.yangtools</groupId> -->
304 <!-- <artifactId>features-test</artifactId> -->
305 <!-- <version>${odl.yangtools.version}</version> -->
306 <!-- <scope>test</scope> -->
307 <!-- </dependency> -->
308 <!-- YANG tools -->
309 <dependency>
310 <groupId>org.opendaylight.yangtools</groupId>
311 <artifactId>features-yangtools</artifactId>
312 <version>${odl.yangtools.version}</version>
313 <classifier>features</classifier>
314 <type>xml</type>
315 </dependency>
316 <!-- SDNC -->
317 <dependency>
318 <groupId>org.openecomp.sdnc.core</groupId>
319 <artifactId>sli-common</artifactId>
320 <version>${sdnctl.sli.version}</version>
321 </dependency>
322 <dependency>
323 <groupId>org.openecomp.sdnc.core</groupId>
324 <artifactId>sli-provider</artifactId>
325 <version>${sdnctl.sli.version}</version>
326 </dependency>
327 <!-- dblib -->
328 <dependency>
329 <groupId>org.openecomp.sdnc.core</groupId>
330 <artifactId>dblib-provider</artifactId>
331 <version>${sdnctl.dblib.version}</version>
332 </dependency>
333 <!-- A&AI service provider dependency override in order to use a stable
334 version -->
335 <dependency>
336 <groupId>org.openecomp.sdnc.adaptors</groupId>
337 <artifactId>aai-service-provider</artifactId>
338 <version>${sdnctl.aai.service.version}</version>
339 </dependency>
340 <!-- APPC -->
341 <dependency>
342 <groupId>org.openecomp.appc</groupId>
343 <artifactId>appc-controller-features</artifactId>
344 <classifier>features</classifier>
345 <type>xml</type>
346 <version>${project.version}</version>
347 </dependency>
348 <dependency>
349 <groupId>org.openecomp.appc</groupId>
350 <artifactId>appc-controller-model</artifactId>
351 <version>${project.version}</version>
352 </dependency>
353 <dependency>
354 <groupId>org.openecomp.appc</groupId>
355 <artifactId>appc-controller-bundle</artifactId>
356 <version>${project.version}</version>
357 <classifier>config</classifier>
358 <type>xml</type>
359 </dependency>
360 <dependency>
361 <groupId>org.openecomp.appc</groupId>
362 <artifactId>appc-controller-bundle</artifactId>
363 <version>${project.version}</version>
364 </dependency>
365 <!-- OTHER -->
366 <dependency>
367 <groupId>equinoxSDK381</groupId>
368 <artifactId>org.eclipse.osgi</artifactId>
369 <version>${equinox.osgi.version}</version>
370 </dependency>
371 <dependency>
372 <groupId>org.apache.commons</groupId>
373 <artifactId>commons-lang3</artifactId>
374 <version>${commons.lang3.version}</version>
375 </dependency>
376 <dependency>
377 <groupId>junit</groupId>
378 <artifactId>junit</artifactId>
379 <version>4.12</version>
380 <scope>test</scope>
381 </dependency>
382 <dependency>
383 <groupId>ch.qos.logback</groupId>
384 <artifactId>logback-core</artifactId>
385 <version>1.1.1</version>
386 <scope>compile</scope>
387 </dependency>
388 <dependency>
389 <groupId>ch.qos.logback</groupId>
390 <artifactId>logback-classic</artifactId>
391 <version>1.1.1</version>
392 <scope>compile</scope>
393 </dependency>
394 <dependency>
395 <groupId>org.slf4j</groupId>
396 <artifactId>slf4j-api</artifactId>
397 <version>1.7.12</version>
398 </dependency>
399 <dependency>
400 <groupId>commons-lang</groupId>
401 <artifactId>commons-lang</artifactId>
402 <version>2.6</version>
403 </dependency>
404 <dependency>
405 <groupId>org.apache.sshd</groupId>
406 <artifactId>sshd-core</artifactId>
407 <version>0.12.0</version>
408 </dependency>
409 <dependency>
410 <groupId>javax.jms</groupId>
411 <artifactId>jms</artifactId>
412 <version>1.1</version>
413 </dependency>
414 <dependency>
415 <groupId>org.mockito</groupId>
416 <artifactId>mockito-core</artifactId>
417 <version>1.10.19</version>
418 <scope>test</scope>
419 </dependency>
420 <dependency>
421 <groupId>com.att.nsa</groupId>
422 <artifactId>cambriaClient</artifactId>
423 <version>${cambriaClient-version}</version>
424 </dependency>
425 <dependency>
426 <groupId>com.att.nsa</groupId>
427 <artifactId>saClientLibrary</artifactId>
428 <version>${cambriaClient-version}</version>
429 </dependency>
430 <!-- CDP -->
431 <dependency>
432 <groupId>com.att.cdp</groupId>
433 <artifactId>cdp-pal-common</artifactId>
434 <version>${cdp.pal.version}</version>
435 </dependency>
436 <dependency>
437 <groupId>com.att.cdp</groupId>
438 <artifactId>cdp-pal-openstack</artifactId>
439 <version>${cdp.pal.version}</version>
440 </dependency>
441 <!-- <dependency> -->
442 <!-- <groupId>com.att.cdp</groupId> -->
443 <!-- <artifactId>cdp-common</artifactId> -->
444 <!-- <version>${cdp.version}</version> -->
445 <!-- </dependency> -->
446 <!-- Cadi -->
447 <dependency>
448 <groupId>com.att.cadi</groupId>
449 <artifactId>cadi-aaf</artifactId>
450 <version>${cadi-version}</version>
451 </dependency>
452 <dependency>
453 <groupId>com.att.cadi</groupId>
454 <artifactId>cadi-client</artifactId>
455 <version>${cadi-version}</version>
456 </dependency>
457 <dependency>
458 <groupId>com.att.cadi</groupId>
459 <artifactId>cadi-core</artifactId>
460 <version>${cadi-version}</version>
461 </dependency>
462 <dependency>
463 <groupId>com.att.inno</groupId>
464 <artifactId>env</artifactId>
465 <version>${inno-version}</version>
466 </dependency>
467 <dependency>
468 <groupId>com.att.inno</groupId>
469 <artifactId>rosetta</artifactId>
470 <version>${inno-version}</version>
471 </dependency>
472 <dependency>
473 <groupId>com.att.aft.discovery</groupId>
474 <artifactId>discovery-clt</artifactId>
475 <version>5.1.3-01</version>
476 </dependency>
477 <dependency>
478 <groupId>com.att.aft</groupId>
479 <artifactId>dme2</artifactId>
480 <version>${dme2-version}</version>
481 </dependency>
482 <dependency>
483 <groupId>com.att.authz</groupId>
484 <artifactId>authz-client</artifactId>
485 <version>2.3</version>
486 <!-- We need to supply a modified jar WITHOUT Example.class in the jar
487 root for BND to build -->
488 <!-- <scope>system</scope> -->
489 <!-- <systemPath>${basedir}/lib/authz-client-2.3-modified.jar</systemPath> -->
490 </dependency>
491 <!-- EELF logging framework -->
492 <dependency>
493 <groupId>com.att.eelf</groupId>
494 <artifactId>eelf-core</artifactId>
495 <version>${eelf.version}</version>
496 </dependency>
497 </dependencies>
498 </dependencyManagement>
499 <!-- ================================================================================== -->
500 <!-- Define common plugins and make them available for all modules -->
501 <!-- ================================================================================== -->
502 <build>
503 <pluginManagement>
504 <plugins>
505 <!-- Define the site plugin to generate documentation -->
506 <plugin>
507 <groupId>org.apache.maven.plugins</groupId>
508 <artifactId>maven-site-plugin</artifactId>
509 <version>3.4</version>
510 <dependencies>
511 <!-- add support for ssh/scp -->
512 <dependency>
513 <groupId>org.apache.maven.wagon</groupId>
514 <artifactId>wagon-ssh</artifactId>
515 <version>1.0</version>
516 </dependency>
517 </dependencies>
518 </plugin>
519 <!-- Define the compiler plugin -->
520 <plugin>
521 <groupId>org.apache.maven.plugins</groupId>
522 <artifactId>maven-compiler-plugin</artifactId>
523 <version>${maven.compile.plugin.version}</version>
524 <configuration>
525 <source>${java.version.source}</source>
526 <target>${java.version.target}</target>
527 </configuration>
528 </plugin>
529 <!-- Define the javadoc plugin -->
530 <plugin>
531 <groupId>org.apache.maven.plugins</groupId>
532 <artifactId>maven-javadoc-plugin</artifactId>
533 <version>2.10</version>
534 <configuration>
535 <excludePackageNames>org.opendaylight.*:org.openecomp.sdnc</excludePackageNames>
536 </configuration>
537 </plugin>
538 <!-- Define the source plugin -->
539 <plugin>
540 <artifactId>maven-source-plugin</artifactId>
541 <version>2.1.1</version>
542 </plugin>
543 <!-- Resources plugin -->
544 <plugin>
545 <groupId>org.apache.maven.plugins</groupId>
546 <artifactId>maven-resources-plugin</artifactId>
547 <version>2.6</version>
548 <executions>
549 <execution>
550 <id>filter</id>
551 <goals>
552 <goal>resources</goal>
553 </goals>
554 <phase>generate-resources</phase>
555 </execution>
556 </executions>
557 </plugin>
558 <plugin>
559 <artifactId>maven-release-plugin</artifactId>
560 <version>2.5.2</version>
561 <configuration>
562 <goals>-s ${mvn.settings} deploy</goals>
563 </configuration>
564 </plugin>
565 <plugin>
566 <artifactId>maven-assembly-plugin</artifactId>
567 <version>2.5.5</version>
568 </plugin>
569 <plugin>
570 <groupId>org.apache.maven.plugins</groupId>
571 <artifactId>maven-deploy-plugin</artifactId>
572 <version>2.8.1</version>
573 </plugin>
574 <plugin>
575 <groupId>org.apache.maven.plugins</groupId>
576 <artifactId>maven-dependency-plugin</artifactId>
577 <version>2.10</version>
578 </plugin>
579 <!-- Maven surefire plugin for testing -->
580 <plugin>
581 <artifactId>maven-surefire-plugin</artifactId>
582 <version>2.17</version>
583 </plugin>
584 <!-- Maven OSGi bundle plugin used to package OSGi bundles -->
585 <plugin>
586 <groupId>org.apache.felix</groupId>
587 <artifactId>maven-bundle-plugin</artifactId>
588 <version>${bundle.plugin.version}</version>
589 </plugin>
590 <plugin>
591 <groupId>org.codehaus.mojo</groupId>
592 <artifactId>build-helper-maven-plugin</artifactId>
593 <version>1.9.1</version>
594 </plugin>
595 <!-- SonarQube plugin -->
596 <plugin>
597 <groupId>org.codehaus.mojo</groupId>
598 <artifactId>sonar-maven-plugin</artifactId>
599 <version>3.2</version>
600 </plugin>
601 </plugins>
602 </pluginManagement>
603 <plugins>
604 <!-- Javadocs Plugin -->
605 <plugin>
606 <groupId>org.apache.maven.plugins</groupId>
607 <artifactId>maven-site-plugin</artifactId>
608 <version>3.6</version>
609 <dependencies>
610 <dependency>
611 <groupId>org.apache.maven.wagon</groupId>
612 <artifactId>wagon-webdav-jackrabbit</artifactId>
613 <version>2.10</version>
614 </dependency>
615 </dependencies>
616 </plugin>
617 <!-- license plugin -->
618 <plugin>
619 <groupId>org.codehaus.mojo</groupId>
620 <artifactId>license-maven-plugin</artifactId>
621 <version>1.10</version>
622 <configuration>
623 <addJavaLicenseAfterPackage>false</addJavaLicenseAfterPackage>
624 <processStartTag>============LICENSE_START=======================================================</processStartTag>
625 <processEndTag>============LICENSE_END=========================================================</processEndTag>
626 <sectionDelimiter>================================================================================</sectionDelimiter>
627 <licenseName>apache_v2</licenseName>
628 <inceptionYear>2017</inceptionYear>
629 <organizationName>AT&amp;T Intellectual Property. All rights
630 reserved.</organizationName>
631 <projectName>openECOMP : APP-C</projectName>
632 <canUpdateCopyright>true</canUpdateCopyright>
633 <canUpdateDescription>true</canUpdateDescription>
634 <canUpdateLicense>true</canUpdateLicense>
635 <emptyLineAfterHeader>true</emptyLineAfterHeader>
636 </configuration>
637 <executions>
638 <execution>
639 <id>first</id>
640 <goals>
641 <goal>update-file-header</goal>
642 </goals>
643 <phase>process-sources</phase>
644 </execution>
645 </executions>
646 </plugin>
647 <plugin>
648 <groupId>org.codehaus.mojo</groupId>
649 <artifactId>properties-maven-plugin</artifactId>
650 <executions>
651 <execution>
652 <goals>
653 <goal>set-system-properties</goal>
654 </goals>
655 <configuration>
656 <properties>
657 <property>
658 <name>maven.wagon.http.ssl.allowall</name>
659 <value>${ssl.allowall}</value>
660 </property>
661 <property>
662 <name>maven.wagon.http.ssl.insecure</name>
663 <value>${ssl.insecure}</value>
664 </property>
665 </properties>
666 </configuration>
667 </execution>
668 </executions>
669 </plugin>
670 <!-- blackduck maven plugin -->
671 <!--
672 <plugin>
673 <groupId>com.blackducksoftware.integration</groupId>
674 <artifactId>hub-maven-plugin</artifactId>
675 <version>1.4.0</version>
676 <inherited>false</inherited>
677 <configuration>
678 <hubProjectName>${project.name}</hubProjectName>
679 <outputDirectory>${project.basedir}</outputDirectory>
680 </configuration>
681 <executions>
682 <execution>
683 <id>create-bdio-file</id>
684 <phase>package</phase>
685 <goals>
686 <goal>createHubOutput</goal>
687 </goals>
688 </execution>
689 </executions>
690 </plugin>
691 -->
692 </plugins>
693 </build>
694 <!-- ================================================================================== -->
695 <!-- The modules we build every time -->
696 <!-- ================================================================================== -->
697 <modules>
698 <module>appc-common</module>
699 </modules>
700 <!-- Adding profiles for testing -->
701 <profiles>
702 <profile>
703 <id>appc-core</id>
704 <properties>
705 <ssl.allowall>true</ssl.allowall>
706 <ssl.insecure>true</ssl.insecure>
Patrick Brady9171e282017-02-21 13:20:34 -0800707 <openecomp.nexus.host>nexus.openecomp.org</openecomp.nexus.host>
Patrick Brady18281522017-02-21 13:47:01 -0800708 <openecomp.nexus.release-url>https://nexus.openecomp.org/content/repositories/releases/</openecomp.nexus.release-url>
709 <openecomp.nexus.snapshot-url>https://nexus.openecomp.org/content/repositories/snapshots/</openecomp.nexus.snapshot-url>
Patrick Brady57b5eef2017-02-10 15:00:49 -0800710 <openecomp.git.port>7999</openecomp.git.port>
711 <openecomp.git.project>st_osecomp</openecomp.git.project>
712 <openecomp.git.protocol>http</openecomp.git.protocol>
713 </properties>
714 <!-- Core app-c from 1604 -->
715 <activation>
716 <activeByDefault>true</activeByDefault>
717 </activation>
718 <modules>
719 <module>appc-common</module>
720 <module>appc-adapters</module>
721 <module>appc-provider</module>
722 <module>appc-event-listener</module>
723 <module>appc-asdc-listener</module>
724 </modules>
725 </profile>
726 <profile>
727 <id>request-dispatcher</id>
728 <properties>
729 <ssl.allowall>true</ssl.allowall>
730 <ssl.insecure>true</ssl.insecure>
731 </properties>
732 <activation>
733 <activeByDefault>true</activeByDefault>
734 </activation>
735 <modules>
736 <module>appc-dispatcher</module>
737 <module>appc-metric</module>
738 <module>appc-dg</module>
739 <module>appc-dg-util</module>
740 </modules>
741 </profile>
742 </profiles>
Patrick Brady9171e282017-02-21 13:20:34 -0800743</project>