blob: a0b696635b5fc1e42f6f6852022a448e4e4d5d08 [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 Timoney0f2db3f2018-01-25 16:23:27 -0500574 </dependencies>
575
576 </dependencyManagement>
577
578
579 <reporting>
580 <plugins>
581 <plugin>
582 <artifactId>maven-javadoc-plugin</artifactId>
583 <version>2.10.4</version>
584 <configuration>
585 <failOnError>false</failOnError>
586 <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
587 <docletArtifact>
588 <groupId>org.umlgraph</groupId>
589 <artifactId>umlgraph</artifactId>
590 <version>5.6</version>
591 </docletArtifact>
592 <additionalparam>-views</additionalparam>
593 <useStandardDocletOptions>true</useStandardDocletOptions>
594 <excludePackageNames>org.opendaylight.*</excludePackageNames>
595 <additionalDependencies>
596 <additionalDependency>
597 <groupId>org.slf4j</groupId>
598 <artifactId>slf4j-api</artifactId>
599 <version>${slf4j.version}</version>
600 </additionalDependency>
601 <additionalDependency>
602 <groupId>org.antlr</groupId>
603 <artifactId>antlr4</artifactId>
604 <version>${antlr.version}</version>
605 </additionalDependency>
606 <additionalDependency>
607 <groupId>org.antlr</groupId>
608 <artifactId>antlr4-runtime</artifactId>
609 <version>${antlr.version}</version>
610 </additionalDependency>
611
612 <additionalDependency>
613 <groupId>com.sun.jersey</groupId>
614 <artifactId>jersey-client</artifactId>
615 <version>${jersey.json.version}</version>
616 </additionalDependency>
617 <additionalDependency>
618 <groupId>com.sun.jersey</groupId>
619 <artifactId>jersey-core</artifactId>
620 <version>${jersey.json.version}</version>
621 </additionalDependency>
622 <additionalDependency>
623 <groupId>org.apache.httpcomponents</groupId>
624 <artifactId>httpcore-osgi</artifactId>
625 <version>${apache.httpcomponents.core.version}</version>
626 </additionalDependency>
627 <additionalDependency>
628 <groupId>org.apache.httpcomponents</groupId>
629 <artifactId>httpclient-osgi</artifactId>
630 <version>${apache.httpcomponents.client.version}</version>
631 </additionalDependency>
632 <additionalDependency>
633 <groupId>com.fasterxml.jackson.core</groupId>
634 <artifactId>jackson-databind</artifactId>
635 <version>${fasterxml.jackson.version}</version>
636 </additionalDependency>
637 <additionalDependency>
638 <groupId>com.fasterxml.jackson.core</groupId>
639 <artifactId>jackson-annotations</artifactId>
640 <version>${fasterxml.jackson.version}</version>
641 </additionalDependency>
642 <additionalDependency>
643 <groupId>com.fasterxml.jackson.core</groupId>
644 <artifactId>jackson-core</artifactId>
645 <version>${fasterxml.jackson.version}</version>
646 </additionalDependency>
647 <additionalDependency>
648 <groupId>commons-lang</groupId>
649 <artifactId>commons-lang</artifactId>
650 <version>${commons.lang.version}</version>
651 </additionalDependency>
652 </additionalDependencies>
653 </configuration>
654 <reportSets>
655 <reportSet>
656 <reports>
657 <report>javadoc-no-fork</report>
658 <report>test-javadoc-no-fork</report>
659 </reports>
660 </reportSet>
661 <reportSet>
662 <id>aggregate</id>
663 <reports>
664 <report>aggregate</report>
665 <report>test-aggregate</report>
666 </reports>
667 </reportSet>
668 </reportSets>
669 </plugin>
670 <plugin>
671 <groupId>org.apache.maven.plugins</groupId>
672 <artifactId>maven-jxr-plugin</artifactId>
673 <version>2.3</version>
674 <reportSets>
675 <reportSet>
676 <id>aggregate</id>
677 <reports>
678 <report>aggregate</report>
679 <report>test-aggregate</report>
680 </reports>
681 </reportSet>
682 </reportSets>
683 </plugin>
684
685 <plugin>
686 <artifactId>maven-surefire-plugin</artifactId>
687 <version>2.17</version>
688 </plugin>
689 <plugin>
690 <groupId>org.apache.maven.plugins</groupId>
691 <artifactId>maven-changelog-plugin</artifactId>
692 <version>2.3</version>
693 <reportSets>
694 <reportSet>
695 <id>dual-report</id>
696 <configuration>
697 <type>range</type>
698 <range>30</range>
699 </configuration>
700 <reports>
701 <report>changelog</report>
702 <report>file-activity</report>
703 </reports>
704 </reportSet>
705 </reportSets>
706 </plugin>
707 <plugin>
708 <groupId>org.codehaus.mojo</groupId>
709 <artifactId>taglist-maven-plugin</artifactId>
710 <version>2.4</version>
711 </plugin>
712 </plugins>
713 </reporting>
714
715
716 <pluginRepositories>
717 <pluginRepository>
718 <id>onap-public</id>
719 <url>${onap.nexus.public-url}</url>
720 <releases>
721 <enabled>true</enabled>
722 </releases>
723 <snapshots>
724 <enabled>true</enabled>
725 </snapshots>
726 </pluginRepository>
727 <pluginRepository>
728 <id>onap-snapshot</id>
729 <url>${onap.nexus.snapshot-url}</url>
730 <releases>
731 <enabled>false</enabled>
732 </releases>
733 <snapshots>
734 <enabled>true</enabled>
735 </snapshots>
736 </pluginRepository>
737 <pluginRepository>
738 <id>opendaylight-mirror</id>
739 <name>opendaylight-mirror</name>
740 <url>${opendaylight.nexus.public-url}</url>
741 <releases>
742 <enabled>true</enabled>
743 <updatePolicy>never</updatePolicy>
744 </releases>
745 <snapshots>
746 <enabled>false</enabled>
747 </snapshots>
748 </pluginRepository>
749 <pluginRepository>
750 <id>opendaylight-snapshot</id>
751 <name>opendaylight-snapshot</name>
752 <url>${opendaylight.nexus.snapshot-url}</url>
753 <releases>
754 <enabled>false</enabled>
755 </releases>
756 <snapshots>
757 <enabled>true</enabled>
758 </snapshots>
759 </pluginRepository>
760 <!-- Black Duck plugin dependencies -->
761 <pluginRepository>
762 <id>JCenter</id>
763 <name>JCenter Repository</name>
764 <url>http://jcenter.bintray.com</url>
765 </pluginRepository>
766
767 <pluginRepository>
768 <id>Restlet</id>
769 <name>Restlet Repository</name>
770 <url>http://maven.restlet.com</url>
771 </pluginRepository>
772 </pluginRepositories>
773
774
775 <repositories>
776 <repository>
777 <id>onap-public</id>
778 <url>https://nexus.onap.org/content/groups/public</url>
779 <releases>
780 <enabled>true</enabled>
781 <updatePolicy>never</updatePolicy>
782 </releases>
783 <snapshots>
784 <enabled>true</enabled>
785 <updatePolicy>always</updatePolicy>
786 </snapshots>
787 </repository>
788 <repository>
789 <id>onap-staging</id>
790 <url>https://nexus.onap.org/content/groups/staging</url>
791 <releases>
792 <enabled>true</enabled>
793 <updatePolicy>never</updatePolicy>
794 </releases>
795 <snapshots>
796 <enabled>true</enabled>
797 <updatePolicy>always</updatePolicy>
798 </snapshots>
799 </repository>
800 <repository>
801 <id>ecomp-release</id>
802 <name>onap-repository-releases</name>
803 <url>https://nexus.onap.org/content/repositories/releases</url>
804 <releases>
805 <enabled>true</enabled>
806 <updatePolicy>never</updatePolicy>
807 </releases>
808 <snapshots>
809 <enabled>false</enabled>
810 </snapshots>
811 </repository>
812 <repository>
813 <id>ecomp-snapshot</id>
814 <name>onap-repository-snapshots</name>
815 <url>https://nexus.onap.org/content/repositories/snapshots</url>
816 <releases>
817 <enabled>false</enabled>
818 </releases>
819 <snapshots>
820 <enabled>true</enabled>
821 </snapshots>
822 </repository>
823 <repository>
824 <id>opendaylight-mirror</id>
825 <name>opendaylight-mirror</name>
826 <url>https://nexus.opendaylight.org/content/repositories/public/</url>
827 <releases>
828 <enabled>true</enabled>
829 <updatePolicy>never</updatePolicy>
830 </releases>
831 <snapshots>
832 <enabled>false</enabled>
833 </snapshots>
834 </repository>
835 <repository>
836 <id>opendaylight-snapshot</id>
837 <name>opendaylight-snapshot</name>
838 <url>https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
839 <releases>
840 <enabled>false</enabled>
841 </releases>
842 <snapshots>
843 <enabled>true</enabled>
844 </snapshots>
845 </repository>
846
847 </repositories>
848
849 <distributionManagement>
850 <repository>
851 <id>ecomp-releases</id>
Dan Timoney45ddb6c2018-02-06 10:19:20 -0500852 <url>http://nexus.onap.org/content/repositories/releases</url>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500853 </repository>
854 <snapshotRepository>
855 <id>ecomp-snapshots</id>
Dan Timoney45ddb6c2018-02-06 10:19:20 -0500856 <url>http://nexus.onap.org/content/repositories/snapshots</url>
Dan Timoney0f2db3f2018-01-25 16:23:27 -0500857 </snapshotRepository>
858 </distributionManagement>
859
860 <build>
861 <pluginManagement>
862 <plugins>
863
864 <!-- Plugins from ONAP oparent -->
865 <plugin>
866 <groupId>org.apache.maven.plugins</groupId>
867 <artifactId>maven-deploy-plugin</artifactId>
868 <!-- This version supports the "deployAtEnd" parameter -->
869 <version>2.8</version>
870 <configuration>
871 <skip />
872 </configuration>
873 </plugin>
874
875 <plugin>
876 <groupId>org.apache.maven.plugins</groupId>
877 <artifactId>maven-site-plugin</artifactId>
878 <version>3.6</version>
879 <dependencies>
880 <dependency>
881 <groupId>org.apache.maven.wagon</groupId>
882 <artifactId>wagon-webdav-jackrabbit</artifactId>
883 <version>2.10</version>
884 </dependency>
885 <dependency>
886 <groupId>org.apache.maven.doxia</groupId>
887 <artifactId>doxia-core</artifactId>
888 <version>1.7</version>
889 </dependency>
890 <dependency>
891 <groupId>org.apache.maven.doxia</groupId>
892 <artifactId>doxia-sink-api</artifactId>
893 <version>1.7</version>
894 </dependency>
895 <dependency>
896 <groupId>org.apache.maven.doxia</groupId>
897 <artifactId>doxia-logging-api</artifactId>
898 <version>1.7</version>
899 </dependency>
900 </dependencies>
901 <executions>
902 <execution>
903 <id>attach-descriptor</id>
904 <goals>
905 <goal>attach-descriptor</goal>
906 </goals>
907 </execution>
908 </executions>
909 </plugin>
910 <plugin>
911 <artifactId>maven-checkstyle-plugin</artifactId>
912 <version>2.17</version>
913 <dependencies>
914 <dependency>
915 <groupId>org.onap.oparent</groupId>
916 <artifactId>checkstyle</artifactId>
917 <version>1.1.0-SNAPSHOT</version>
918 </dependency>
919 </dependencies>
920 <executions>
921 <execution>
922 <id>check-license</id>
923 <goals>
924 <goal>check</goal>
925 </goals>
926 <phase>process-sources</phase>
927 <configuration>
928 <configLocation>onap-checkstyle/check-license.xml</configLocation>
929 <headerLocation>onap-checkstyle/apache-license-2.regexp.txt</headerLocation>
930 <includeResources>false</includeResources>
931 <includeTestSourceDirectory>true</includeTestSourceDirectory>
932 <includeTestResources>false</includeTestResources>
933 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
934 <excludes>
935 </excludes>
936 <failsOnError>false</failsOnError>
937 <consoleOutput>true</consoleOutput>
938 </configuration>
939 </execution>
940 <execution>
941 <id>check-style</id>
942 <goals>
943 <goal>check</goal>
944 </goals>
945 <phase>process-sources</phase>
946 <configuration>
947 <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml
948 with minor changes -->
949 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
950 <!-- <sourceDirectory> is needed so that
951 checkstyle ignores the generated sources directory -->
952 <sourceDirectory>${project.build.sourceDirectory}/src/main/java</sourceDirectory>
953 <includeResources>true</includeResources>
954 <includeTestSourceDirectory>true</includeTestSourceDirectory>
955 <includeTestResources>true</includeTestResources>
956 <excludes>
957 </excludes>
958 <failsOnError>false</failsOnError>
959 <consoleOutput>true</consoleOutput>
960 </configuration>
961 </execution>
962 </executions>
963 </plugin>
964 <plugin>
965 <groupId>org.jacoco</groupId>
966 <artifactId>jacoco-maven-plugin</artifactId>
967 <version>${jacoco.version}</version>
968 <configuration>
969 <!-- Note: This exclusion list should match <sonar.exclusions>
970 property above -->
971 <excludes>
972 <exclude>**/gen/**</exclude>
973 <exclude>**/generated-sources/**</exclude>
974 <exclude>**/yang-gen/**</exclude>
975 <exclude>**/pax/**</exclude>
976 </excludes>
977 </configuration>
978 <executions>
979 <!-- Prepares the property pointing to the JaCoCo
980 runtime agent which is passed as VM argument when Maven the Surefire plugin
981 is executed. -->
982 <execution>
983 <id>pre-unit-test</id>
984 <goals>
985 <goal>prepare-agent</goal>
986 </goals>
987 <configuration>
988 <!-- Sets the path to the file which contains
989 the execution data. -->
990 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
991 <!-- Sets the name of the property containing
992 the settings for JaCoCo runtime agent. -->
993 <propertyName>surefireArgLine</propertyName>
994 </configuration>
995 </execution>
996 <!-- Ensures that the code coverage report for unit
997 tests is created after unit tests have been run. -->
998 <execution>
999 <id>post-unit-test</id>
1000 <phase>test</phase>
1001 <goals>
1002 <goal>report</goal>
1003 </goals>
1004 <configuration>
1005 <!-- Sets the path to the file which contains
1006 the execution data. -->
1007 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
1008 <!-- Sets the output directory for the code
1009 coverage report. -->
1010 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
1011 </configuration>
1012 </execution>
1013 <execution>
1014 <id>pre-integration-test</id>
1015 <phase>pre-integration-test</phase>
1016 <goals>
1017 <goal>prepare-agent</goal>
1018 </goals>
1019 <configuration>
1020 <!-- Sets the path to the file which contains
1021 the execution data. -->
1022 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
1023 <!-- Sets the name of the property containing
1024 the settings for JaCoCo runtime agent. -->
1025 <propertyName>failsafeArgLine</propertyName>
1026 </configuration>
1027 </execution>
1028 <!-- Ensures that the code coverage report for integration
1029 tests after integration tests have been run. -->
1030 <execution>
1031 <id>post-integration-test</id>
1032 <phase>post-integration-test</phase>
1033 <goals>
1034 <goal>report</goal>
1035 </goals>
1036 <configuration>
1037 <!-- Sets the path to the file which contains
1038 the execution data. -->
1039 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
1040 <!-- Sets the output directory for the code
1041 coverage report. -->
1042 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
1043 </configuration>
1044 </execution>
1045 </executions>
1046 </plugin>
1047 <plugin>
1048 <groupId>org.apache.maven.plugins</groupId>
1049 <artifactId>maven-surefire-plugin</artifactId>
1050 <version>2.19.1</version>
1051 <configuration>
1052 <!-- Sets the VM argument line used when unit tests
1053 are run. -->
1054 <argLine>${surefireArgLine}</argLine>
1055 <!-- Excludes integration tests when unit tests are
1056 run. -->
1057 <excludes>
1058 <exclude>**/IT*.java</exclude>
1059 </excludes>
1060 </configuration>
1061 </plugin>
1062 <plugin>
1063 <groupId>org.apache.maven.plugins</groupId>
1064 <artifactId>maven-failsafe-plugin</artifactId>
1065 <version>2.19.1</version>
1066 <executions>
1067 <!-- Ensures that both integration-test and verify
1068 goals of the Failsafe Maven plugin are executed. -->
1069 <execution>
1070 <id>integration-tests</id>
1071 <goals>
1072 <goal>integration-test</goal>
1073 <goal>verify</goal>
1074 </goals>
1075 <configuration>
1076 <!-- Sets the VM argument line used when
1077 integration tests are run. -->
1078 <argLine>${failsafeArgLine}</argLine>
1079 </configuration>
1080 </execution>
1081 </executions>
1082 </plugin>
1083 <plugin>
1084 <groupId>org.apache.maven.plugins</groupId>
1085 <artifactId>maven-compiler-plugin</artifactId>
1086 <version>${maven.compile.plugin.version}</version>
1087 <configuration>
1088 <source>${java.version.source}</source>
1089 <target>${java.version.target}</target>
1090 </configuration>
1091 </plugin>
1092 <plugin>
1093 <groupId>org.sonarsource.scanner.maven</groupId>
1094 <artifactId>sonar-maven-plugin</artifactId>
1095 <version>3.3.0.603</version>
1096 </plugin>
1097
1098 <!-- End of plugins from ONAP oparent -->
1099
1100 <plugin>
1101 <groupId>org.apache.maven.plugins</groupId>
1102 <artifactId>maven-javadoc-plugin</artifactId>
1103 <version>2.10</version>
1104 <configuration>
1105 <additionalDependencies>
1106 <additionalDependency>
1107 <groupId>org.slf4j</groupId>
1108 <artifactId>slf4j-api</artifactId>
1109 <version>${slf4j.version}</version>
1110 </additionalDependency>
1111 <additionalDependency>
1112 <groupId>org.antlr</groupId>
1113 <artifactId>antlr4</artifactId>
1114 <version>${antlr.version}</version>
1115 </additionalDependency>
1116 <additionalDependency>
1117 <groupId>org.antlr</groupId>
1118 <artifactId>antlr4-runtime</artifactId>
1119 <version>${antlr.version}</version>
1120 </additionalDependency>
1121
1122 <additionalDependency>
1123 <groupId>com.sun.jersey</groupId>
1124 <artifactId>jersey-client</artifactId>
1125 <version>${jersey.client.version}</version>
1126 </additionalDependency>
1127 <additionalDependency>
1128 <groupId>com.sun.jersey</groupId>
1129 <artifactId>jersey-core</artifactId>
1130 <version>${jersey.version}</version>
1131 </additionalDependency>
1132 <additionalDependency>
1133 <groupId>org.apache.httpcomponents</groupId>
1134 <artifactId>httpcore-osgi</artifactId>
1135 <version>${apache.httpcomponents.core.version}</version>
1136 </additionalDependency>
1137 <additionalDependency>
1138 <groupId>org.apache.httpcomponents</groupId>
1139 <artifactId>httpclient-osgi</artifactId>
1140 <version>${apache.httpcomponents.client.version}</version>
1141 </additionalDependency>
1142 <additionalDependency>
1143 <groupId>com.fasterxml.jackson.core</groupId>
1144 <artifactId>jackson-databind</artifactId>
1145 <version>${jackson.version}</version>
1146 </additionalDependency>
1147 <additionalDependency>
1148 <groupId>com.fasterxml.jackson.core</groupId>
1149 <artifactId>jackson-annotations</artifactId>
1150 <version>${jackson.version}</version>
1151 </additionalDependency>
1152 <additionalDependency>
1153 <groupId>com.fasterxml.jackson.core</groupId>
1154 <artifactId>jackson-core</artifactId>
1155 <version>${jackson.version}</version>
1156 </additionalDependency>
1157 <additionalDependency>
1158 <groupId>commons-lang</groupId>
1159 <artifactId>commons-lang</artifactId>
1160 <version>${commons.lang.version}</version>
1161 </additionalDependency>
1162 </additionalDependencies>
1163 </configuration>
1164
1165 <executions>
1166 <execution>
1167 <id>aggregate</id>
1168 <goals>
1169 <goal>aggregate</goal>
1170 </goals>
1171 <phase>site</phase>
1172
1173 </execution>
1174 </executions>
1175 </plugin>
1176 <plugin>
1177 <artifactId>maven-source-plugin</artifactId>
1178 <version>2.1.1</version>
1179 <executions>
1180 <execution>
1181 <id>bundle-sources</id>
1182 <phase>package</phase>
1183 <goals>
1184 <!-- produce source artifact for main project
1185 sources -->
1186 <goal>jar-no-fork</goal>
1187
1188 <!-- produce source artifact for project
1189 test sources -->
1190 <goal>test-jar-no-fork</goal>
1191 </goals>
1192 </execution>
1193 </executions>
1194 </plugin>
1195
1196
1197 </plugins>
1198
1199 </pluginManagement>
1200
1201 <plugins>
1202 <!-- Plugins from ONAP oparent -->
1203 <plugin>
1204 <artifactId>maven-checkstyle-plugin</artifactId>
1205 </plugin>
1206 <plugin>
1207 <groupId>org.codehaus.mojo</groupId>
1208 <artifactId>build-helper-maven-plugin</artifactId>
1209 <version>1.12</version>
1210 </plugin>
1211 <!-- Jacoco / Sonar -->
1212 <plugin>
1213 <groupId>org.jacoco</groupId>
1214 <artifactId>jacoco-maven-plugin</artifactId>
1215 </plugin>
1216 <plugin>
1217 <groupId>org.apache.maven.plugins</groupId>
1218 <artifactId>maven-surefire-plugin</artifactId>
1219 </plugin>
1220 <plugin>
1221 <groupId>org.apache.maven.plugins</groupId>
1222 <artifactId>maven-failsafe-plugin</artifactId>
1223 </plugin>
1224
1225 <!-- End of plugins from ONAP oparent -->
1226 <plugin>
1227 <groupId>org.codehaus.mojo</groupId>
1228 <artifactId>properties-maven-plugin</artifactId>
1229 <version>1.0.0</version>
1230 <executions>
1231 <execution>
1232 <goals>
1233 <goal>set-system-properties</goal>
1234 </goals>
1235 <configuration>
1236 <properties>
1237 <property>
1238 <name>maven.wagon.http.ssl.allowall</name>
1239 <value>${ssl.allowall}</value>
1240 </property>
1241 <property>
1242 <name>maven.wagon.http.ssl.insecure</name>
1243 <value>${ssl.insecure}</value>
1244 </property>
1245 </properties>
1246 </configuration>
1247 </execution>
1248 </executions>
1249 </plugin>
1250 <plugin>
1251 <groupId>org.sonatype.plugins</groupId>
1252 <artifactId>nexus-staging-maven-plugin</artifactId>
1253 <version>1.6.7</version>
1254 <extensions>true</extensions>
1255 <configuration>
1256 <nexusUrl>${onap.nexus.url}</nexusUrl>
1257 <stagingProfileId>176c31dfe190a</stagingProfileId>
1258 <serverId>ecomp-staging</serverId>
1259 </configuration>
1260 </plugin>
1261 <plugin>
1262 <groupId>org.codehaus.mojo</groupId>
1263 <artifactId>versions-maven-plugin</artifactId>
Dan Timoney1f55bc82018-02-12 10:35:37 -05001264 <version>2.5</version>
Dan Timoneyb75556a2018-02-22 17:14:21 -06001265 <configuration>
Dan Timoney1f55bc82018-02-12 10:35:37 -05001266 <processAllModules>true</processAllModules>
1267 </configuration>
Dan Timoney0f2db3f2018-01-25 16:23:27 -05001268 </plugin>
1269 <plugin>
1270 <artifactId>maven-scm-plugin</artifactId>
1271 <version>1.8.1</version>
1272 <configuration>
1273 <tag>${project.artifactId}-${project.version}</tag>
1274 </configuration>
1275 </plugin>
1276 </plugins>
1277 </build>
1278 <organization>
1279 <name>ONAP</name>
1280 </organization>
1281</project>