blob: 84aea68bfe7459ad9c7933513664ad535f7c2741 [file] [log] [blame]
Dan Timoney0f2db3f2018-01-25 16:23:27 -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/maven-v4_0_0.xsd">
4
5
6 <modelVersion>4.0.0</modelVersion>
7 <packaging>pom</packaging>
8 <groupId>org.onap.ccsdk.parent</groupId>
9 <artifactId>binding-parent</artifactId>
Dan Timoney3e77e072018-02-08 15:36:37 -050010 <version>1.0.1-SNAPSHOT</version>
Dan Timoney0f2db3f2018-01-25 16:23:27 -050011
12 <parent>
13 <groupId>org.opendaylight.mdsal</groupId>
14 <artifactId>binding-parent</artifactId>
15 <version>0.11.1</version>
16 <relativePath />
17 </parent>
18
19
20 <name>ONAP :: ${project.groupId} :: ${project.artifactId}</name>
21 <url>http://wiki.onap.org</url>
22 <description>Root POM to be used in place of odlparent for CCSDK based projects</description>
23
24
25 <issueManagement>
26 <system>JIRA</system>
27 <url>https://jira.onap.org/</url>
28 </issueManagement>
29
30 <properties>
31
32 <!--- properties from oparent -->
33 <maven.compiler.source>1.8</maven.compiler.source>
34 <maven.compiler.target>1.8</maven.compiler.target>
35 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
36 <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
37 <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
38 <!-- sitePath may be overridden in the inheriting POM if desired -->
39 <sitePath>/content/sites/site/${project.groupId}/${project.artifactId}/${project.version}</sitePath>
40 <jacoco.version>0.7.7.201606060606</jacoco.version>
41 <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
42 <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
43 <!-- Default Sonar configuration -->
44 <sonar.jacoco.reportPath>target/code-coverage/jacoco-ut.exec</sonar.jacoco.reportPath>
45 <sonar.jacoco.itReportPath>target/code-coverage/jacoco-it.exec</sonar.jacoco.itReportPath>
46 <!-- Note: This list should match jacoco-maven-plugin's exclusion
47 list below -->
48 <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
49 <!-- If following file exist, auto-generation of swagger.json will
50 be done -->
51 <swagger-properties>${basedir}/src/main/resources/swagger.properties</swagger-properties>
52 <!-- If following file exist, auto-generation of sdk will be done -->
53 <swagger-json>${basedir}/src/main/resources/swagger.json</swagger-json>
54 <!--- end of properties from oparent -->
55
56 <!-- ONAP repositories -->
57 <onap.nexus.host>nexus.onap.org</onap.nexus.host>
58 <onap.nexus.port>443</onap.nexus.port>
59 <onap.nexus.protocol>https</onap.nexus.protocol>
60 <onap.nexus.public-url>https://nexus.onap.org/content/groups/public</onap.nexus.public-url>
61 <onap.nexus.staging-url>https://nexus.onap.org/content/groups/staging</onap.nexus.staging-url>
62 <onap.nexus.release-url>https://nexus.onap.org/content/repositories/releases</onap.nexus.release-url>
63 <onap.nexus.snapshot-url>https://nexus.onap.org/content/repositories/snapshots</onap.nexus.snapshot-url>
64 <onap.nexus.staging.server-id>ecomp-staging</onap.nexus.staging.server-id>
65 <onap.nexus.staging.profile-id>176c31dfe190a</onap.nexus.staging.profile-id>
66
67
68 <!-- OpenDaylight repositories -->
69 <opendaylight.nexus.public-url>https://nexus.opendaylight.org/content/repositories/public/</opendaylight.nexus.public-url>
70 <opendaylight.nexus.snapshot-url>https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</opendaylight.nexus.snapshot-url>
71
72
73 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
74 <java.version.source>1.8</java.version.source>
75 <java.version.target>1.8</java.version.target>
76 <bundle.plugin.version>2.5.0</bundle.plugin.version>
77 <maven.compile.plugin.version>2.5.1</maven.compile.plugin.version>
78 <features.file>features.xml</features.file>
79 <jmxGeneratorPath>src/main/yang-gen-config</jmxGeneratorPath>
80 <salGeneratorPath>src/main/yang-gen-sal</salGeneratorPath>
81 <checkstyle.skip>true</checkstyle.skip>
82
83
84 <sonar.language>java</sonar.language>
85 <sonar.java.coveragePlugin>jacoco</sonar.java.coveragePlugin>
86 <sonar.surefire.reportsPath>${project.build.directory}/surefire-reports</sonar.surefire.reportsPath>
87 <sonar.jacoco.reportPath>${project.build.directory}/coverage-reports/jacoco.exec</sonar.jacoco.reportPath>
88 <sonar.jacoco.reportMissing.force.zero>true</sonar.jacoco.reportMissing.force.zero>
89 <sonar.projectVersion>${project.version}</sonar.projectVersion>
90
91
92
93
94 <!-- CCSDK component versions -->
Dan Timoney3e77e072018-02-08 15:36:37 -050095 <ccsdk.sli.core.version>0.2.1-SNAPSHOT</ccsdk.sli.core.version>
96 <ccsdk.sli.adaptors.version>0.2.1-SNAPSHOT</ccsdk.sli.adaptors.version>
97 <ccsdk.sli.northbound.version>0.2.1-SNAPSHOT</ccsdk.sli.northbound.version>
98 <ccsdk.sli.plugins.version>0.2.1-SNAPSHOT</ccsdk.sli.plugins.version>
Dan Timoney0f2db3f2018-01-25 16:23:27 -050099 <sdnctl.sli.version>${ccsdk.sli.core.version}</sdnctl.sli.version>
100 <sdnctl.aai.service.version>${ccsdk.sli.adaptors.version}</sdnctl.aai.service.version>
101 <sdnctl.dblib.version>${ccsdk.sli.core.version}</sdnctl.dblib.version>
102 <sdnctl.mdsal.resource.version>${ccsdk.sli.adaptors.version}</sdnctl.mdsal.resource.version>
103 <sdnctl.slipluginutils.version>${ccsdk.sli.core.version}</sdnctl.slipluginutils.version>
104
Dan Timoneyb75556a2018-02-22 17:14:21 -0600105
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500106 <!-- Support libraries used by OpenDaylight -->
Dan Timoneyb75556a2018-02-22 17:14:21 -0600107 <odl.mdsal.version>1.6.1</odl.mdsal.version>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500108 <!-- Used by aaa, vtn -->
109 <commons.codec.version>1.10</commons.codec.version>
110 <!-- Used by netconf, ovsdb -->
Dan Timoneyf680cc62018-02-15 10:09:28 -0500111 <commons.lang3.version>3.6</commons.lang3.version>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500112 <!-- Used by sfc, snmp4sdn; see also affinity, toolkit -->
113 <commons.lang.version>2.6</commons.lang.version>
114 <!-- Used by neutron; see also controller, vtn -->
Dan Timoneyf680cc62018-02-15 10:09:28 -0500115 <commons.net.version>3.6</commons.net.version>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500116 <!-- Used by neutron -->
117 <eclipse.persistence.version>2.6.2</eclipse.persistence.version>
118 <!-- Used by aaa -->
119 <felix.dependencymanager.version>4.3.0</felix.dependencymanager.version>
120 <!-- Used by lacp, netconf, ovsdb, sfc, toolkit; see also vtn -->
Dan Timoneyf680cc62018-02-15 10:09:28 -0500121 <gson.version>2.7</gson.version>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500122 <!-- Used by aaa, dlux, persistence, snmp4sdn, sxp -->
Dan Timoneyf680cc62018-02-15 10:09:28 -0500123 <guava.version>22.0</guava.version>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500124 <!-- Used by lispflowmapping, sxp, vtn/manager -->
125 <hamcrest.version>1.3</hamcrest.version>
126 <!-- Used by aaa, alto, netconf, ovsdb, sfc; see also affinity, defense4all,
127 integration/distribution, snmp4sdn, toolkit, ttp -->
128 <jackson.version>2.3.2</jackson.version>
129 <!-- Used by snmp4sdn, yangtools -->
130 <javassist.version>3.20.0-GA</javassist.version>
131
132 <!-- FIXME remove all dependencies for jersey 1.17 after migration
133 all projects -->
134 <!-- Used by aaa, alto, netconf, neutron, sfc; see also affinity,
135 defense4all, snmp4sdn, toolkit -->
136 <jersey.version>1.17</jersey.version>
137 <!-- Used by sfc -->
138 <jersey.client.version>1.17</jersey.client.version>
139
140 <!-- New packages for jersey migration 1.17 to 2.8 -->
141 <!-- appache.geronimo.bundle for DocGen -->
142 <!-- Used by aaa, iotdm, netconf, ovsdb, sfc -->
143 <org.json.version>20131018</org.json.version>
144
145 <!-- Used by sfc -->
Dan Timoneyf680cc62018-02-15 10:09:28 -0500146 <jettison.version>1.3.7</jettison.version>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500147 <!-- Used by persistence -->
148 <jsr305.api.version>3.0.0</jsr305.api.version>
149 <!-- Need to stick to JUnit 4.11 until https://github.com/jayway/powermock/issues/560
150 is fixed (either in PowerMock or with a new JUnit release) -->
151 <!-- Used everywhere -->
152 <junit.version>4.11</junit.version>
153 <!-- Used by coretutorials, sfc, snmp4sdn, sxp; see also affinity,
154 toolkit -->
Dan Timoneyf680cc62018-02-15 10:09:28 -0500155 <logback.version>1.2.2</logback.version>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500156 <!-- Used by nic, sfc, sxp, tsdr -->
157 <mockito.version>1.10.19</mockito.version>
158 <!-- Used by bgpcep, netconf, ovsdb, sxp; see also opendove, toolkit -->
Dan Timoneyf680cc62018-02-15 10:09:28 -0500159 <netty.version>4.1.8.Final</netty.version>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500160 <!-- Used by openflowjava, persistence, sfc, snmp4sdn, sxp; see also
161 affinity, toolkit -->
162 <slf4j.version>1.7.21</slf4j.version>
163 <!-- Used in integration/distribution; see also affinity, snmp4sdn,
164 toolkit, tsdr, ttp -->
Dan Timoneyf680cc62018-02-15 10:09:28 -0500165 <spring.version>3.2.17.RELEASE</spring.version>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500166
167
168
169 <!-- Extra support libraries used by SDN-C -->
170 <equinox.osgi.version>3.8.1.v20120830-144521</equinox.osgi.version>
171 <jackson-annotations-version>${jackson.version}</jackson-annotations-version>
172 <jvnet.jaxb2.version>0.6.4</jvnet.jaxb2.version>
Dan Timoneyf680cc62018-02-15 10:09:28 -0500173 <apache.httpcomponents.core.version>4.4.4</apache.httpcomponents.core.version>
174 <apache.httpcomponents.client.version>4.5.2</apache.httpcomponents.client.version>
Dan Timoneyb75556a2018-02-22 17:14:21 -0600175 <antlr.version>4.7</antlr.version>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500176 <mysql.connector.version>5.1.39</mysql.connector.version>
177 <mariadb.connector.version>2.1.1</mariadb.connector.version>
178 <h2database.version>1.4.186</h2database.version>
179
180 <tomcat-jdbc.version>8.5.14</tomcat-jdbc.version>
181 </properties>
182
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500183 <profiles>
184 <!-- Profiles from ONAP oparent -->
185 <profile>
186 <id>generate-json</id>
187 <activation>
188 <file>
189 <exists>${swagger-properties}</exists>
190 </file>
191 <property>
192 <name>swagger-sdk.generate-json</name>
193 </property>
194 </activation>
195 <build>
196 <plugins>
197 <plugin>
198 <groupId>org.codehaus.mojo</groupId>
199 <artifactId>properties-maven-plugin</artifactId>
200 <version>1.0.0</version>
201 <executions>
202 <execution>
203 <phase>initialize</phase>
204 <goals>
205 <goal>read-project-properties</goal>
206 </goals>
207 <configuration>
208 <files>
209 <file>${basedir}/src/main/resources/swagger.properties</file>
210 </files>
211 </configuration>
212 </execution>
213 </executions>
214 </plugin>
215 <plugin>
216 <groupId>com.github.kongchen</groupId>
217 <artifactId>swagger-maven-plugin</artifactId>
218 <version>3.1.4</version>
219 <configuration>
220 <apiSources>
221 <apiSource>
222 <locations>${api-rest-package}</locations>
223 <schemes>http,https</schemes>
224 <host>${api-host-ip}:${api-host-port}</host>
225 <basePath>${api-base-path}</basePath>
226 <info>
227 <title>${api-title}</title>
228 <version>${api-version}</version>
229 <description>${api-description}</description>
230 <license>
231 <name>${api-license}</name>
232 </license>
233 </info>
234 <swaggerDirectory>${basedir}/src/main/resources</swaggerDirectory>
235 </apiSource>
236 </apiSources>
237 </configuration>
238 <executions>
239 <execution>
240 <phase>compile</phase>
241 <goals>
242 <goal>generate</goal>
243 </goals>
244 </execution>
245 </executions>
246 </plugin>
247 <plugin>
248 <groupId>org.apache.maven.plugins</groupId>
249 <artifactId>maven-install-plugin</artifactId>
250 <version>2.3.1</version>
251 <executions>
252 <execution>
253 <id>install-file-id</id>
254 <phase>install</phase>
255 <goals>
256 <goal>install-file</goal>
257 </goals>
258 <configuration>
259 <file>${basedir}/src/main/resources/swagger.json</file>
260 <groupId>${project.groupId}</groupId>
261 <artifactId>${project.artifactId}-swagger-schema</artifactId>
262 <version>${project.version}</version>
263 <packaging>json</packaging>
264 </configuration>
265 </execution>
266 </executions>
267 </plugin>
268 </plugins>
269 </build>
270 </profile>
271 <profile>
272 <id>generate-sdk</id>
273 <activation>
274 <file>
275 <exists>${swagger-json}</exists>
276 </file>
277 <property>
278 <name>swagger-sdk.generate-java-sdk</name>
279 </property>
280 </activation>
281 <build>
282 <plugins>
283 <plugin>
284 <groupId>org.apache.maven.plugins</groupId>
285 <artifactId>maven-antrun-plugin</artifactId>
286 <version>1.8</version>
287 <executions>
288 <execution>
289 <phase>initialize</phase>
290 <id>ant-create-script</id>
291 <configuration>
292 <exportAntProperties>true</exportAntProperties>
293 <tasks>
294
295 <taskdef
296 resource="net/sf/antcontrib/antlib.xml"
297 classpathref="maven.plugin.classpath" />
298 <condition property="is_windows"
299 value="true">
300 <os family="windows" />
301 </condition>
302 <condition property="isLinux"
303 value="true">
304 <os family="unix" />
305 </condition>
306 <if>
307 <equals arg1="${is_windows}"
308 arg2="true" />
309 <then>
310 <property
311 name="swagger.sdk.script.file"
312 value="generated-source-script.bat" />
313 <echo
314 file="${project.build.directory}${file.separator}generated-source-script.bat"
315 append="true"
316 message="cd ${project.build.directory}${file.separator}generated-sources${line.separator}" />
317 <echo
318 file="${project.build.directory}${file.separator}generated-source-script.bat"
319 append="true"
320 message="mvn clean install -Dmaven.test.skip=true${line.separator}" />
321 </then>
322 <else>
323 <property
324 name="swagger.sdk.script.file"
325 value="generated-source-script.sh" />
326 <echo
327 file="${project.build.directory}${file.separator}generated-source-script.sh"
328 append="true"
329 message="cd ${project.build.directory}${file.separator}generated-sources${line.separator}" />
330 <echo
331 file="${project.build.directory}${file.separator}generated-source-script.sh"
332 append="true"
333 message="mvn clean install -Dmaven.test.skip=true${line.separator}" />
334 <chmod
335 file="${project.build.directory}${file.separator}generated-source-script.sh"
336 perm="755" />
337 </else>
338 </if>
339 </tasks>
340 </configuration>
341 <goals>
342 <goal>run</goal>
343 </goals>
344 </execution>
345 </executions>
346 <dependencies>
347 <dependency>
348 <groupId>ant-contrib</groupId>
349 <artifactId>ant-contrib</artifactId>
350 <version>1.0b3</version>
351 <exclusions>
352 <exclusion>
353 <artifactId>ant</artifactId>
354 <groupId>ant</groupId>
355 </exclusion>
356 </exclusions>
357 </dependency>
358 </dependencies>
359 </plugin>
360 <plugin>
361 <groupId>io.swagger</groupId>
362 <artifactId>swagger-codegen-maven-plugin</artifactId>
363 <version>2.2.1</version>
364 <executions>
365 <execution>
366 <goals>
367 <goal>generate</goal>
368 </goals>
369 <configuration>
370 <inputSpec>${basedir}/src/main/resources/swagger.json</inputSpec>
371 <output>${project.build.directory}/generated-sources</output>
372 <language>java</language>
373 <configOptions>
374 <dateLibrary>joda</dateLibrary>
375 </configOptions>
376 <library>jersey2</library>
377 <groupId>${project.groupId}</groupId>
378 <artifactId>${project.artifactId}-java-sdk</artifactId>
379 <artifactVersion>${project.version}</artifactVersion>
380 <modelPackage>${project.groupId}.${project.artifactId}.client.model</modelPackage>
381 <apiPackage>${project.groupId}.${project.artifactId}.client.api</apiPackage>
382 <invokerPackage>${project.groupId}.${project.artifactId}.client.invoker</invokerPackage>
383 </configuration>
384 </execution>
385 </executions>
386 </plugin>
387 <plugin>
388 <artifactId>exec-maven-plugin</artifactId>
389 <groupId>org.codehaus.mojo</groupId>
390 <version>1.5.0</version>
391 <executions>
392 <execution>
393 <id>swagger-generate-sources</id>
394 <phase>generate-sources</phase>
395 <goals>
396 <goal>exec</goal>
397 </goals>
398 <configuration>
399 <executable>${project.build.directory}${file.separator}${swagger.sdk.script.file}</executable>
400 </configuration>
401 </execution>
402 </executions>
403 </plugin>
404 <plugin>
405 <groupId>org.apache.maven.plugins</groupId>
406 <artifactId>maven-clean-plugin</artifactId>
407 <version>3.0.0</version>
408 <executions>
409 <execution>
410 <id>clean-generated-files</id>
411 <phase>generate-sources</phase>
412 <goals>
413 <goal>clean</goal>
414 </goals>
415 <configuration>
416 <filesets>
417 <fileset>
418 <directory>${project.build.directory}/generated-sources</directory>
419 </fileset>
420 </filesets>
421 </configuration>
422 </execution>
423 </executions>
424 </plugin>
425 </plugins>
426 </build>
427 <dependencies>
428 <dependency>
429 <groupId>org.onap.msb.swagger-sdk</groupId>
430 <artifactId>swagger-sdk</artifactId>
431 <version>1.0.0</version>
432 </dependency>
433 </dependencies>
434 </profile>
435
436 <!-- End of profiles from ONAP oparent -->
437
Dan Timoneyb75556a2018-02-22 17:14:21 -0600438 <profile>
439 <activation>
440 <file>
441 <exists>src/main/yang</exists>
442 </file>
443 </activation>
444 <build>
445 <plugins>
446 <plugin>
447 <groupId>org.opendaylight.yangtools</groupId>
448 <artifactId>yang-maven-plugin</artifactId>
449 <version>${yangtools.version}</version>
450 <dependencies>
451 <dependency>
452 <groupId>org.opendaylight.mdsal</groupId>
453 <artifactId>maven-sal-api-gen-plugin</artifactId>
454 <version>0.11.1</version>
455 <type>jar</type>
456 </dependency>
457 <dependency>
458 <groupId>org.opendaylight.netconf</groupId>
459 <artifactId>sal-rest-docgen-maven</artifactId>
460 <version>${odl.mdsal.version}</version>
461 <type>jar</type>
462 </dependency>
463 </dependencies>
464 <executions>
465 <execution>
466 <goals>
467 <goal>generate-sources</goal>
468 </goals>
469 <configuration>
470 <yangFilesRootDir>${yang.file.directory}</yangFilesRootDir>
471 <codeGenerators>
472 <generator>
473 <codeGeneratorClass>org.opendaylight.mdsal.binding.maven.api.gen.plugin.CodeGeneratorImpl</codeGeneratorClass>
474 <outputBaseDir>${salGeneratorPath}</outputBaseDir>
475 </generator>
476 <generator>
477 <codeGeneratorClass>org.opendaylight.netconf.sal.rest.doc.maven.StaticDocGenerator</codeGeneratorClass>
478 <outputBaseDir>target/swagger</outputBaseDir>
479 </generator>
480 </codeGenerators>
481 <inspectDependencies>true</inspectDependencies>
482 </configuration>
483 </execution>
484 </executions>
485 </plugin>
486 </plugins>
487 </build>
488 </profile>
489
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500490 </profiles>
491
492
493 <dependencyManagement>
494 <dependencies>
495 <dependency>
Dan Timoneyb75556a2018-02-22 17:14:21 -0600496 <groupId>org.opendaylight.controller</groupId>
497 <artifactId>mdsal-artifacts</artifactId>
498 <version>${odl.mdsal.version}</version>
499 <type>pom</type>
500 <scope>import</scope>
501 </dependency>
502 <dependency>
503 <groupId>org.opendaylight.mdsal.model</groupId>
504 <artifactId>mdsal-model-artifacts</artifactId>
505 <version>0.11.1</version>
506 <type>pom</type>
507 <scope>import</scope>
508 </dependency>
509 <dependency>
510 <groupId>org.opendaylight.controller</groupId>
511 <artifactId>sal-binding-config</artifactId>
512 <version>${odl.mdsal.version}</version>
513 </dependency>
514
515 <dependency>
516 <groupId>org.opendaylight.controller</groupId>
517 <artifactId>sal-test-model</artifactId>
518 <version>${odl.mdsal.version}</version>
519 </dependency>
520 <dependency>
521 <groupId>org.opendaylight.netconf</groupId>
522 <artifactId>sal-rest-connector</artifactId>
523 <version>${odl.mdsal.version}</version>
524 </dependency>
525
526 <dependency>
527 <groupId>org.opendaylight.controller</groupId>
528 <artifactId>sal-binding-broker-impl</artifactId>
529 <version>${odl.mdsal.version}</version>
530 </dependency>
531 <dependency>
532 <groupId>org.opendaylight.controller</groupId>
533 <artifactId>sal-binding-broker-impl</artifactId>
534 <version>${odl.mdsal.version}</version>
535 <type>test-jar</type>
536 <classifier>tests</classifier>
537 <scope>test</scope>
538 </dependency>
539 <dependency>
540 <groupId>org.onap.ccsdk.sli.core</groupId>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500541 <artifactId>sli-common</artifactId>
Dan Timoneyb75556a2018-02-22 17:14:21 -0600542 <version>${ccsdk.sli.core.version}</version>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500543 </dependency>
544
545 <dependency>
Dan Timoneyb75556a2018-02-22 17:14:21 -0600546 <groupId>org.onap.ccsdk.sli.core</groupId>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500547 <artifactId>sli-provider</artifactId>
Dan Timoneyb75556a2018-02-22 17:14:21 -0600548 <version>${ccsdk.sli.core.version}</version>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500549 </dependency>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500550 <dependency>
Dan Timoneyb75556a2018-02-22 17:14:21 -0600551 <groupId>org.onap.ccsdk.sli.core</groupId>
552 <artifactId>ccsdk-sli</artifactId>
553 <version>${ccsdk.sli.core.version}</version>
554 <type>xml</type>
555 <classifier>features</classifier>
556 </dependency>
557 <dependency>
558 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500559 <artifactId>aai-service-provider</artifactId>
560 <version>${sdnctl.aai.service.version}</version>
561 </dependency>
562
563 <dependency>
Dan Timoneyb75556a2018-02-22 17:14:21 -0600564 <groupId>org.onap.ccsdk.sli.core</groupId>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500565 <artifactId>dblib-provider</artifactId>
566 <version>${sdnctl.dblib.version}</version>
567 </dependency>
Dan Timoneyb75556a2018-02-22 17:14:21 -0600568
569 <dependency>
570 <groupId>org.testng</groupId>
571 <artifactId>testng</artifactId>
572 <version>6.11</version>
573 </dependency>
Dan Timoney3c5275a2018-02-26 19:37:10 -0500574 <dependency>
575 <groupId>org.springframework</groupId>
576 <artifactId>spring-test</artifactId>
577 <version>${spring.version}</version>
578 </dependency>
579 <dependency>
580 <groupId>org.springframework</groupId>
581 <artifactId>spring-beans</artifactId>
582 <version>${spring.version}</version>
583 </dependency>
584 <dependency>
585 <groupId>org.springframework</groupId>
586 <artifactId>spring-context</artifactId>
587 <version>${spring.version}</version>
588 </dependency>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500589 </dependencies>
590
591 </dependencyManagement>
592
593
594 <reporting>
595 <plugins>
596 <plugin>
597 <artifactId>maven-javadoc-plugin</artifactId>
598 <version>2.10.4</version>
599 <configuration>
600 <failOnError>false</failOnError>
601 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
602 <docletArtifact>
603 <groupId>org.umlgraph</groupId>
604 <artifactId>umlgraph</artifactId>
605 <version>5.6</version>
606 </docletArtifact>
607 <additionalparam>-views</additionalparam>
608 <useStandardDocletOptions>true</useStandardDocletOptions>
609 <excludePackageNames>org.opendaylight.*</excludePackageNames>
610 <additionalDependencies>
611 <additionalDependency>
612 <groupId>org.slf4j</groupId>
613 <artifactId>slf4j-api</artifactId>
614 <version>${slf4j.version}</version>
615 </additionalDependency>
616 <additionalDependency>
617 <groupId>org.antlr</groupId>
618 <artifactId>antlr4</artifactId>
619 <version>${antlr.version}</version>
620 </additionalDependency>
621 <additionalDependency>
622 <groupId>org.antlr</groupId>
623 <artifactId>antlr4-runtime</artifactId>
624 <version>${antlr.version}</version>
625 </additionalDependency>
626
627 <additionalDependency>
628 <groupId>com.sun.jersey</groupId>
629 <artifactId>jersey-client</artifactId>
630 <version>${jersey.json.version}</version>
631 </additionalDependency>
632 <additionalDependency>
633 <groupId>com.sun.jersey</groupId>
634 <artifactId>jersey-core</artifactId>
635 <version>${jersey.json.version}</version>
636 </additionalDependency>
637 <additionalDependency>
638 <groupId>org.apache.httpcomponents</groupId>
639 <artifactId>httpcore-osgi</artifactId>
640 <version>${apache.httpcomponents.core.version}</version>
641 </additionalDependency>
642 <additionalDependency>
643 <groupId>org.apache.httpcomponents</groupId>
644 <artifactId>httpclient-osgi</artifactId>
645 <version>${apache.httpcomponents.client.version}</version>
646 </additionalDependency>
647 <additionalDependency>
648 <groupId>com.fasterxml.jackson.core</groupId>
649 <artifactId>jackson-databind</artifactId>
650 <version>${fasterxml.jackson.version}</version>
651 </additionalDependency>
652 <additionalDependency>
653 <groupId>com.fasterxml.jackson.core</groupId>
654 <artifactId>jackson-annotations</artifactId>
655 <version>${fasterxml.jackson.version}</version>
656 </additionalDependency>
657 <additionalDependency>
658 <groupId>com.fasterxml.jackson.core</groupId>
659 <artifactId>jackson-core</artifactId>
660 <version>${fasterxml.jackson.version}</version>
661 </additionalDependency>
662 <additionalDependency>
663 <groupId>commons-lang</groupId>
664 <artifactId>commons-lang</artifactId>
665 <version>${commons.lang.version}</version>
666 </additionalDependency>
667 </additionalDependencies>
668 </configuration>
669 <reportSets>
670 <reportSet>
671 <reports>
672 <report>javadoc-no-fork</report>
673 <report>test-javadoc-no-fork</report>
674 </reports>
675 </reportSet>
676 <reportSet>
677 <id>aggregate</id>
678 <reports>
679 <report>aggregate</report>
680 <report>test-aggregate</report>
681 </reports>
682 </reportSet>
683 </reportSets>
684 </plugin>
685 <plugin>
686 <groupId>org.apache.maven.plugins</groupId>
687 <artifactId>maven-jxr-plugin</artifactId>
688 <version>2.3</version>
689 <reportSets>
690 <reportSet>
691 <id>aggregate</id>
692 <reports>
693 <report>aggregate</report>
694 <report>test-aggregate</report>
695 </reports>
696 </reportSet>
697 </reportSets>
698 </plugin>
699
700 <plugin>
701 <artifactId>maven-surefire-plugin</artifactId>
702 <version>2.17</version>
703 </plugin>
704 <plugin>
705 <groupId>org.apache.maven.plugins</groupId>
706 <artifactId>maven-changelog-plugin</artifactId>
707 <version>2.3</version>
708 <reportSets>
709 <reportSet>
710 <id>dual-report</id>
711 <configuration>
712 <type>range</type>
713 <range>30</range>
714 </configuration>
715 <reports>
716 <report>changelog</report>
717 <report>file-activity</report>
718 </reports>
719 </reportSet>
720 </reportSets>
721 </plugin>
722 <plugin>
723 <groupId>org.codehaus.mojo</groupId>
724 <artifactId>taglist-maven-plugin</artifactId>
725 <version>2.4</version>
726 </plugin>
727 </plugins>
728 </reporting>
729
730
731 <pluginRepositories>
732 <pluginRepository>
733 <id>onap-public</id>
734 <url>${onap.nexus.public-url}</url>
735 <releases>
736 <enabled>true</enabled>
737 </releases>
738 <snapshots>
739 <enabled>true</enabled>
740 </snapshots>
741 </pluginRepository>
742 <pluginRepository>
743 <id>onap-snapshot</id>
744 <url>${onap.nexus.snapshot-url}</url>
745 <releases>
746 <enabled>false</enabled>
747 </releases>
748 <snapshots>
749 <enabled>true</enabled>
750 </snapshots>
751 </pluginRepository>
752 <pluginRepository>
753 <id>opendaylight-mirror</id>
754 <name>opendaylight-mirror</name>
755 <url>${opendaylight.nexus.public-url}</url>
756 <releases>
757 <enabled>true</enabled>
758 <updatePolicy>never</updatePolicy>
759 </releases>
760 <snapshots>
761 <enabled>false</enabled>
762 </snapshots>
763 </pluginRepository>
764 <pluginRepository>
765 <id>opendaylight-snapshot</id>
766 <name>opendaylight-snapshot</name>
767 <url>${opendaylight.nexus.snapshot-url}</url>
768 <releases>
769 <enabled>false</enabled>
770 </releases>
771 <snapshots>
772 <enabled>true</enabled>
773 </snapshots>
774 </pluginRepository>
775 <!-- Black Duck plugin dependencies -->
776 <pluginRepository>
777 <id>JCenter</id>
778 <name>JCenter Repository</name>
779 <url>http://jcenter.bintray.com</url>
780 </pluginRepository>
781
782 <pluginRepository>
783 <id>Restlet</id>
784 <name>Restlet Repository</name>
785 <url>http://maven.restlet.com</url>
786 </pluginRepository>
787 </pluginRepositories>
788
789
790 <repositories>
791 <repository>
792 <id>onap-public</id>
793 <url>https://nexus.onap.org/content/groups/public</url>
794 <releases>
795 <enabled>true</enabled>
796 <updatePolicy>never</updatePolicy>
797 </releases>
798 <snapshots>
799 <enabled>true</enabled>
800 <updatePolicy>always</updatePolicy>
801 </snapshots>
802 </repository>
803 <repository>
804 <id>onap-staging</id>
805 <url>https://nexus.onap.org/content/groups/staging</url>
806 <releases>
807 <enabled>true</enabled>
808 <updatePolicy>never</updatePolicy>
809 </releases>
810 <snapshots>
811 <enabled>true</enabled>
812 <updatePolicy>always</updatePolicy>
813 </snapshots>
814 </repository>
815 <repository>
816 <id>ecomp-release</id>
817 <name>onap-repository-releases</name>
818 <url>https://nexus.onap.org/content/repositories/releases</url>
819 <releases>
820 <enabled>true</enabled>
821 <updatePolicy>never</updatePolicy>
822 </releases>
823 <snapshots>
824 <enabled>false</enabled>
825 </snapshots>
826 </repository>
827 <repository>
828 <id>ecomp-snapshot</id>
829 <name>onap-repository-snapshots</name>
830 <url>https://nexus.onap.org/content/repositories/snapshots</url>
831 <releases>
832 <enabled>false</enabled>
833 </releases>
834 <snapshots>
835 <enabled>true</enabled>
836 </snapshots>
837 </repository>
838 <repository>
839 <id>opendaylight-mirror</id>
840 <name>opendaylight-mirror</name>
841 <url>https://nexus.opendaylight.org/content/repositories/public/</url>
842 <releases>
843 <enabled>true</enabled>
844 <updatePolicy>never</updatePolicy>
845 </releases>
846 <snapshots>
847 <enabled>false</enabled>
848 </snapshots>
849 </repository>
850 <repository>
851 <id>opendaylight-snapshot</id>
852 <name>opendaylight-snapshot</name>
853 <url>https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
854 <releases>
855 <enabled>false</enabled>
856 </releases>
857 <snapshots>
858 <enabled>true</enabled>
859 </snapshots>
860 </repository>
861
862 </repositories>
863
864 <distributionManagement>
865 <repository>
866 <id>ecomp-releases</id>
Dan Timoney45ddb6c2018-02-06 10:19:20 -0500867 <url>http://nexus.onap.org/content/repositories/releases</url>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500868 </repository>
869 <snapshotRepository>
870 <id>ecomp-snapshots</id>
Dan Timoney45ddb6c2018-02-06 10:19:20 -0500871 <url>http://nexus.onap.org/content/repositories/snapshots</url>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500872 </snapshotRepository>
873 </distributionManagement>
874
875 <build>
876 <pluginManagement>
877 <plugins>
878
879 <!-- Plugins from ONAP oparent -->
880 <plugin>
881 <groupId>org.apache.maven.plugins</groupId>
882 <artifactId>maven-deploy-plugin</artifactId>
883 <!-- This version supports the "deployAtEnd" parameter -->
884 <version>2.8</version>
885 <configuration>
886 <skip />
887 </configuration>
888 </plugin>
889
890 <plugin>
891 <groupId>org.apache.maven.plugins</groupId>
892 <artifactId>maven-site-plugin</artifactId>
893 <version>3.6</version>
894 <dependencies>
895 <dependency>
896 <groupId>org.apache.maven.wagon</groupId>
897 <artifactId>wagon-webdav-jackrabbit</artifactId>
898 <version>2.10</version>
899 </dependency>
900 <dependency>
901 <groupId>org.apache.maven.doxia</groupId>
902 <artifactId>doxia-core</artifactId>
903 <version>1.7</version>
904 </dependency>
905 <dependency>
906 <groupId>org.apache.maven.doxia</groupId>
907 <artifactId>doxia-sink-api</artifactId>
908 <version>1.7</version>
909 </dependency>
910 <dependency>
911 <groupId>org.apache.maven.doxia</groupId>
912 <artifactId>doxia-logging-api</artifactId>
913 <version>1.7</version>
914 </dependency>
915 </dependencies>
916 <executions>
917 <execution>
918 <id>attach-descriptor</id>
919 <goals>
920 <goal>attach-descriptor</goal>
921 </goals>
922 </execution>
923 </executions>
924 </plugin>
925 <plugin>
926 <artifactId>maven-checkstyle-plugin</artifactId>
927 <version>2.17</version>
928 <dependencies>
929 <dependency>
930 <groupId>org.onap.oparent</groupId>
931 <artifactId>checkstyle</artifactId>
932 <version>1.1.0-SNAPSHOT</version>
933 </dependency>
934 </dependencies>
935 <executions>
936 <execution>
937 <id>check-license</id>
938 <goals>
939 <goal>check</goal>
940 </goals>
941 <phase>process-sources</phase>
942 <configuration>
943 <configLocation>onap-checkstyle/check-license.xml</configLocation>
944 <headerLocation>onap-checkstyle/apache-license-2.regexp.txt</headerLocation>
945 <includeResources>false</includeResources>
946 <includeTestSourceDirectory>true</includeTestSourceDirectory>
947 <includeTestResources>false</includeTestResources>
948 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
949 <excludes>
950 </excludes>
951 <failsOnError>false</failsOnError>
952 <consoleOutput>true</consoleOutput>
953 </configuration>
954 </execution>
955 <execution>
956 <id>check-style</id>
957 <goals>
958 <goal>check</goal>
959 </goals>
960 <phase>process-sources</phase>
961 <configuration>
962 <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
963 with minor changes -->
964 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
965 <!-- <sourceDirectory> is needed so that
966 checkstyle ignores the generated sources directory -->
967 <sourceDirectory>${project.build.sourceDirectory}/src/main/java</sourceDirectory>
968 <includeResources>true</includeResources>
969 <includeTestSourceDirectory>true</includeTestSourceDirectory>
970 <includeTestResources>true</includeTestResources>
971 <excludes>
972 </excludes>
973 <failsOnError>false</failsOnError>
974 <consoleOutput>true</consoleOutput>
975 </configuration>
976 </execution>
977 </executions>
978 </plugin>
979 <plugin>
980 <groupId>org.jacoco</groupId>
981 <artifactId>jacoco-maven-plugin</artifactId>
982 <version>${jacoco.version}</version>
983 <configuration>
984 <!-- Note: This exclusion list should match <sonar.exclusions>
985 property above -->
986 <excludes>
987 <exclude>**/gen/**</exclude>
988 <exclude>**/generated-sources/**</exclude>
989 <exclude>**/yang-gen/**</exclude>
990 <exclude>**/pax/**</exclude>
991 </excludes>
992 </configuration>
993 <executions>
994 <!-- Prepares the property pointing to the JaCoCo
995 runtime agent which is passed as VM argument when Maven the Surefire plugin
996 is executed. -->
997 <execution>
998 <id>pre-unit-test</id>
999 <goals>
1000 <goal>prepare-agent</goal>
1001 </goals>
1002 <configuration>
1003 <!-- Sets the path to the file which contains
1004 the execution data. -->
1005 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
1006 <!-- Sets the name of the property containing
1007 the settings for JaCoCo runtime agent. -->
1008 <propertyName>surefireArgLine</propertyName>
1009 </configuration>
1010 </execution>
1011 <!-- Ensures that the code coverage report for unit
1012 tests is created after unit tests have been run. -->
1013 <execution>
1014 <id>post-unit-test</id>
1015 <phase>test</phase>
1016 <goals>
1017 <goal>report</goal>
1018 </goals>
1019 <configuration>
1020 <!-- Sets the path to the file which contains
1021 the execution data. -->
1022 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
1023 <!-- Sets the output directory for the code
1024 coverage report. -->
1025 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
1026 </configuration>
1027 </execution>
1028 <execution>
1029 <id>pre-integration-test</id>
1030 <phase>pre-integration-test</phase>
1031 <goals>
1032 <goal>prepare-agent</goal>
1033 </goals>
1034 <configuration>
1035 <!-- Sets the path to the file which contains
1036 the execution data. -->
1037 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
1038 <!-- Sets the name of the property containing
1039 the settings for JaCoCo runtime agent. -->
1040 <propertyName>failsafeArgLine</propertyName>
1041 </configuration>
1042 </execution>
1043 <!-- Ensures that the code coverage report for integration
1044 tests after integration tests have been run. -->
1045 <execution>
1046 <id>post-integration-test</id>
1047 <phase>post-integration-test</phase>
1048 <goals>
1049 <goal>report</goal>
1050 </goals>
1051 <configuration>
1052 <!-- Sets the path to the file which contains
1053 the execution data. -->
1054 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
1055 <!-- Sets the output directory for the code
1056 coverage report. -->
1057 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
1058 </configuration>
1059 </execution>
1060 </executions>
1061 </plugin>
1062 <plugin>
1063 <groupId>org.apache.maven.plugins</groupId>
1064 <artifactId>maven-surefire-plugin</artifactId>
1065 <version>2.19.1</version>
1066 <configuration>
1067 <!-- Sets the VM argument line used when unit tests
1068 are run. -->
1069 <argLine>${surefireArgLine}</argLine>
1070 <!-- Excludes integration tests when unit tests are
1071 run. -->
1072 <excludes>
1073 <exclude>**/IT*.java</exclude>
1074 </excludes>
1075 </configuration>
1076 </plugin>
1077 <plugin>
1078 <groupId>org.apache.maven.plugins</groupId>
1079 <artifactId>maven-failsafe-plugin</artifactId>
1080 <version>2.19.1</version>
1081 <executions>
1082 <!-- Ensures that both integration-test and verify
1083 goals of the Failsafe Maven plugin are executed. -->
1084 <execution>
1085 <id>integration-tests</id>
1086 <goals>
1087 <goal>integration-test</goal>
1088 <goal>verify</goal>
1089 </goals>
1090 <configuration>
1091 <!-- Sets the VM argument line used when
1092 integration tests are run. -->
1093 <argLine>${failsafeArgLine}</argLine>
1094 </configuration>
1095 </execution>
1096 </executions>
1097 </plugin>
1098 <plugin>
1099 <groupId>org.apache.maven.plugins</groupId>
1100 <artifactId>maven-compiler-plugin</artifactId>
1101 <version>${maven.compile.plugin.version}</version>
1102 <configuration>
1103 <source>${java.version.source}</source>
1104 <target>${java.version.target}</target>
1105 </configuration>
1106 </plugin>
1107 <plugin>
1108 <groupId>org.sonarsource.scanner.maven</groupId>
1109 <artifactId>sonar-maven-plugin</artifactId>
1110 <version>3.3.0.603</version>
1111 </plugin>
1112
1113 <!-- End of plugins from ONAP oparent -->
1114
1115 <plugin>
1116 <groupId>org.apache.maven.plugins</groupId>
1117 <artifactId>maven-javadoc-plugin</artifactId>
1118 <version>2.10</version>
1119 <configuration>
1120 <additionalDependencies>
1121 <additionalDependency>
1122 <groupId>org.slf4j</groupId>
1123 <artifactId>slf4j-api</artifactId>
1124 <version>${slf4j.version}</version>
1125 </additionalDependency>
1126 <additionalDependency>
1127 <groupId>org.antlr</groupId>
1128 <artifactId>antlr4</artifactId>
1129 <version>${antlr.version}</version>
1130 </additionalDependency>
1131 <additionalDependency>
1132 <groupId>org.antlr</groupId>
1133 <artifactId>antlr4-runtime</artifactId>
1134 <version>${antlr.version}</version>
1135 </additionalDependency>
1136
1137 <additionalDependency>
1138 <groupId>com.sun.jersey</groupId>
1139 <artifactId>jersey-client</artifactId>
1140 <version>${jersey.client.version}</version>
1141 </additionalDependency>
1142 <additionalDependency>
1143 <groupId>com.sun.jersey</groupId>
1144 <artifactId>jersey-core</artifactId>
1145 <version>${jersey.version}</version>
1146 </additionalDependency>
1147 <additionalDependency>
1148 <groupId>org.apache.httpcomponents</groupId>
1149 <artifactId>httpcore-osgi</artifactId>
1150 <version>${apache.httpcomponents.core.version}</version>
1151 </additionalDependency>
1152 <additionalDependency>
1153 <groupId>org.apache.httpcomponents</groupId>
1154 <artifactId>httpclient-osgi</artifactId>
1155 <version>${apache.httpcomponents.client.version}</version>
1156 </additionalDependency>
1157 <additionalDependency>
1158 <groupId>com.fasterxml.jackson.core</groupId>
1159 <artifactId>jackson-databind</artifactId>
1160 <version>${jackson.version}</version>
1161 </additionalDependency>
1162 <additionalDependency>
1163 <groupId>com.fasterxml.jackson.core</groupId>
1164 <artifactId>jackson-annotations</artifactId>
1165 <version>${jackson.version}</version>
1166 </additionalDependency>
1167 <additionalDependency>
1168 <groupId>com.fasterxml.jackson.core</groupId>
1169 <artifactId>jackson-core</artifactId>
1170 <version>${jackson.version}</version>
1171 </additionalDependency>
1172 <additionalDependency>
1173 <groupId>commons-lang</groupId>
1174 <artifactId>commons-lang</artifactId>
1175 <version>${commons.lang.version}</version>
1176 </additionalDependency>
1177 </additionalDependencies>
1178 </configuration>
1179
1180 <executions>
1181 <execution>
1182 <id>aggregate</id>
1183 <goals>
1184 <goal>aggregate</goal>
1185 </goals>
1186 <phase>site</phase>
1187
1188 </execution>
1189 </executions>
1190 </plugin>
1191 <plugin>
1192 <artifactId>maven-source-plugin</artifactId>
1193 <version>2.1.1</version>
1194 <executions>
1195 <execution>
1196 <id>bundle-sources</id>
1197 <phase>package</phase>
1198 <goals>
1199 <!-- produce source artifact for main project
1200 sources -->
1201 <goal>jar-no-fork</goal>
1202
1203 <!-- produce source artifact for project
1204 test sources -->
1205 <goal>test-jar-no-fork</goal>
1206 </goals>
1207 </execution>
1208 </executions>
1209 </plugin>
1210
1211
1212 </plugins>
1213
1214 </pluginManagement>
1215
1216 <plugins>
1217 <!-- Plugins from ONAP oparent -->
1218 <plugin>
1219 <artifactId>maven-checkstyle-plugin</artifactId>
1220 </plugin>
1221 <plugin>
1222 <groupId>org.codehaus.mojo</groupId>
1223 <artifactId>build-helper-maven-plugin</artifactId>
1224 <version>1.12</version>
1225 </plugin>
1226 <!-- Jacoco / Sonar -->
1227 <plugin>
1228 <groupId>org.jacoco</groupId>
1229 <artifactId>jacoco-maven-plugin</artifactId>
1230 </plugin>
1231 <plugin>
1232 <groupId>org.apache.maven.plugins</groupId>
1233 <artifactId>maven-surefire-plugin</artifactId>
1234 </plugin>
1235 <plugin>
1236 <groupId>org.apache.maven.plugins</groupId>
1237 <artifactId>maven-failsafe-plugin</artifactId>
1238 </plugin>
1239
1240 <!-- End of plugins from ONAP oparent -->
1241 <plugin>
1242 <groupId>org.codehaus.mojo</groupId>
1243 <artifactId>properties-maven-plugin</artifactId>
1244 <version>1.0.0</version>
1245 <executions>
1246 <execution>
1247 <goals>
1248 <goal>set-system-properties</goal>
1249 </goals>
1250 <configuration>
1251 <properties>
1252 <property>
1253 <name>maven.wagon.http.ssl.allowall</name>
1254 <value>${ssl.allowall}</value>
1255 </property>
1256 <property>
1257 <name>maven.wagon.http.ssl.insecure</name>
1258 <value>${ssl.insecure}</value>
1259 </property>
1260 </properties>
1261 </configuration>
1262 </execution>
1263 </executions>
1264 </plugin>
1265 <plugin>
1266 <groupId>org.sonatype.plugins</groupId>
1267 <artifactId>nexus-staging-maven-plugin</artifactId>
1268 <version>1.6.7</version>
1269 <extensions>true</extensions>
1270 <configuration>
1271 <nexusUrl>${onap.nexus.url}</nexusUrl>
1272 <stagingProfileId>176c31dfe190a</stagingProfileId>
1273 <serverId>ecomp-staging</serverId>
1274 </configuration>
1275 </plugin>
1276 <plugin>
1277 <groupId>org.codehaus.mojo</groupId>
1278 <artifactId>versions-maven-plugin</artifactId>
Dan Timoney1f55bc82018-02-12 10:35:37 -05001279 <version>2.5</version>
Dan Timoneyb75556a2018-02-22 17:14:21 -06001280 <configuration>
Dan Timoney1f55bc82018-02-12 10:35:37 -05001281 <processAllModules>true</processAllModules>
1282 </configuration>
Dan Timoney0f2db3f2018-01-25 16:23:27 -05001283 </plugin>
1284 <plugin>
1285 <artifactId>maven-scm-plugin</artifactId>
1286 <version>1.8.1</version>
1287 <configuration>
1288 <tag>${project.artifactId}-${project.version}</tag>
1289 </configuration>
1290 </plugin>
1291 </plugins>
1292 </build>
1293 <organization>
1294 <name>ONAP</name>
1295 </organization>
1296</project>