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