Merge "Defining glassfish dependency version"
[ccsdk/parent.git] / odlparent / odlparent-lite / 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-lite</artifactId>
11         <version>1.1.0-SNAPSHOT</version>
12
13         <parent>
14                 <groupId>org.opendaylight.odlparent</groupId>
15                 <artifactId>odlparent-lite</artifactId>
16                 <version>3.1.3</version>
17                 <relativePath />
18         </parent>
19
20
21         <url>http://wiki.onap.org</url>
22         <name>ONAP :: ${project.groupId} :: ${project.artifactId}</name>
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.3</odl.mdsal.version>
108                 <odl.mdsal.model.version>0.12.3</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
186                 <dmaapClient.groupId>org.onap.dmaap.messagerouter.dmaapclient</dmaapClient.groupId>
187                 <dmaapClient.version>1.1.5</dmaapClient.version>
188
189                 <glassfish.version>2.27</glassfish.version>
190         </properties>
191
192
193         <profiles>
194                 <!-- Profiles from ONAP oparent -->
195                 <profile>
196                         <id>generate-json</id>
197                         <activation>
198                                 <file>
199                                         <exists>${swagger-properties}</exists>
200                                 </file>
201                                 <property>
202                                         <name>swagger-sdk.generate-json</name>
203                                 </property>
204                         </activation>
205                         <build>
206                                 <plugins>
207                                         <plugin>
208                                                 <groupId>org.codehaus.mojo</groupId>
209                                                 <artifactId>properties-maven-plugin</artifactId>
210                                                 <version>1.0.0</version>
211                                                 <executions>
212                                                         <execution>
213                                                                 <phase>initialize</phase>
214                                                                 <goals>
215                                                                         <goal>read-project-properties</goal>
216                                                                 </goals>
217                                                                 <configuration>
218                                                                         <files>
219                                                                                 <file>${basedir}/src/main/resources/swagger.properties</file>
220                                                                         </files>
221                                                                 </configuration>
222                                                         </execution>
223                                                 </executions>
224                                         </plugin>
225                                         <plugin>
226                                                 <groupId>com.github.kongchen</groupId>
227                                                 <artifactId>swagger-maven-plugin</artifactId>
228                                                 <version>3.1.4</version>
229                                                 <configuration>
230                                                         <apiSources>
231                                                                 <apiSource>
232                                                                         <locations>${api-rest-package}</locations>
233                                                                         <schemes>http,https</schemes>
234                                                                         <host>${api-host-ip}:${api-host-port}</host>
235                                                                         <basePath>${api-base-path}</basePath>
236                                                                         <info>
237                                                                                 <title>${api-title}</title>
238                                                                                 <version>${api-version}</version>
239                                                                                 <description>${api-description}</description>
240                                                                                 <license>
241                                                                                         <name>${api-license}</name>
242                                                                                 </license>
243                                                                         </info>
244                                                                         <swaggerDirectory>${basedir}/src/main/resources</swaggerDirectory>
245                                                                 </apiSource>
246                                                         </apiSources>
247                                                 </configuration>
248                                                 <executions>
249                                                         <execution>
250                                                                 <phase>compile</phase>
251                                                                 <goals>
252                                                                         <goal>generate</goal>
253                                                                 </goals>
254                                                         </execution>
255                                                 </executions>
256                                         </plugin>
257                                         <plugin>
258                                                 <groupId>org.apache.maven.plugins</groupId>
259                                                 <artifactId>maven-install-plugin</artifactId>
260                                                 <version>2.3.1</version>
261                                                 <executions>
262                                                         <execution>
263                                                                 <id>install-file-id</id>
264                                                                 <phase>install</phase>
265                                                                 <goals>
266                                                                         <goal>install-file</goal>
267                                                                 </goals>
268                                                                 <configuration>
269                                                                         <file>${basedir}/src/main/resources/swagger.json</file>
270                                                                         <groupId>${project.groupId}</groupId>
271                                                                         <artifactId>${project.artifactId}-swagger-schema</artifactId>
272                                                                         <version>${project.version}</version>
273                                                                         <packaging>json</packaging>
274                                                                 </configuration>
275                                                         </execution>
276                                                 </executions>
277                                         </plugin>
278                                 </plugins>
279                         </build>
280                 </profile>
281                 <profile>
282                         <id>generate-sdk</id>
283                         <activation>
284                                 <file>
285                                         <exists>${swagger-json}</exists>
286                                 </file>
287                                 <property>
288                                         <name>swagger-sdk.generate-java-sdk</name>
289                                 </property>
290                         </activation>
291                         <build>
292                                 <plugins>
293                                         <plugin>
294                                                 <groupId>org.apache.maven.plugins</groupId>
295                                                 <artifactId>maven-antrun-plugin</artifactId>
296                                                 <version>1.8</version>
297                                                 <executions>
298                                                         <execution>
299                                                                 <phase>initialize</phase>
300                                                                 <id>ant-create-script</id>
301                                                                 <configuration>
302                                                                         <exportAntProperties>true</exportAntProperties>
303                                                                         <tasks>
304
305                                                                                 <taskdef resource="net/sf/antcontrib/antlib.xml"
306                                                                                         classpathref="maven.plugin.classpath" />
307                                                                                 <condition property="is_windows" value="true">
308                                                                                         <os family="windows" />
309                                                                                 </condition>
310                                                                                 <condition property="isLinux" value="true">
311                                                                                         <os family="unix" />
312                                                                                 </condition>
313                                                                                 <if>
314                                                                                         <equals arg1="${is_windows}" arg2="true" />
315                                                                                         <then>
316                                                                                                 <property name="swagger.sdk.script.file"
317                                                                                                         value="generated-source-script.bat" />
318                                                                                                 <echo
319                                                                                                         file="${project.build.directory}${file.separator}generated-source-script.bat"
320                                                                                                         append="true"
321                                                                                                         message="cd ${project.build.directory}${file.separator}generated-sources${line.separator}" />
322                                                                                                 <echo
323                                                                                                         file="${project.build.directory}${file.separator}generated-source-script.bat"
324                                                                                                         append="true"
325                                                                                                         message="mvn clean install -Dmaven.test.skip=true${line.separator}" />
326                                                                                         </then>
327                                                                                         <else>
328                                                                                                 <property name="swagger.sdk.script.file"
329                                                                                                         value="generated-source-script.sh" />
330                                                                                                 <echo
331                                                                                                         file="${project.build.directory}${file.separator}generated-source-script.sh"
332                                                                                                         append="true"
333                                                                                                         message="cd ${project.build.directory}${file.separator}generated-sources${line.separator}" />
334                                                                                                 <echo
335                                                                                                         file="${project.build.directory}${file.separator}generated-source-script.sh"
336                                                                                                         append="true"
337                                                                                                         message="mvn clean install -Dmaven.test.skip=true${line.separator}" />
338                                                                                                 <chmod
339                                                                                                         file="${project.build.directory}${file.separator}generated-source-script.sh"
340                                                                                                         perm="755" />
341                                                                                         </else>
342                                                                                 </if>
343                                                                         </tasks>
344                                                                 </configuration>
345                                                                 <goals>
346                                                                         <goal>run</goal>
347                                                                 </goals>
348                                                         </execution>
349                                                 </executions>
350                                                 <dependencies>
351                                                         <dependency>
352                                                                 <groupId>ant-contrib</groupId>
353                                                                 <artifactId>ant-contrib</artifactId>
354                                                                 <version>1.0b3</version>
355                                                                 <exclusions>
356                                                                         <exclusion>
357                                                                                 <artifactId>ant</artifactId>
358                                                                                 <groupId>ant</groupId>
359                                                                         </exclusion>
360                                                                 </exclusions>
361                                                         </dependency>
362                                                 </dependencies>
363                                         </plugin>
364                                         <plugin>
365                                                 <groupId>io.swagger</groupId>
366                                                 <artifactId>swagger-codegen-maven-plugin</artifactId>
367                                                 <version>2.2.1</version>
368                                                 <executions>
369                                                         <execution>
370                                                                 <goals>
371                                                                         <goal>generate</goal>
372                                                                 </goals>
373                                                                 <configuration>
374                                                                         <inputSpec>${basedir}/src/main/resources/swagger.json</inputSpec>
375                                                                         <output>${project.build.directory}/generated-sources</output>
376                                                                         <language>java</language>
377                                                                         <configOptions>
378                                                                                 <dateLibrary>joda</dateLibrary>
379                                                                         </configOptions>
380                                                                         <library>jersey2</library>
381                                                                         <groupId>${project.groupId}</groupId>
382                                                                         <artifactId>${project.artifactId}-java-sdk</artifactId>
383                                                                         <artifactVersion>${project.version}</artifactVersion>
384                                                                         <modelPackage>${project.groupId}.${project.artifactId}.client.model</modelPackage>
385                                                                         <apiPackage>${project.groupId}.${project.artifactId}.client.api</apiPackage>
386                                                                         <invokerPackage>${project.groupId}.${project.artifactId}.client.invoker</invokerPackage>
387                                                                 </configuration>
388                                                         </execution>
389                                                 </executions>
390                                         </plugin>
391                                         <plugin>
392                                                 <artifactId>exec-maven-plugin</artifactId>
393                                                 <groupId>org.codehaus.mojo</groupId>
394                                                 <version>1.5.0</version>
395                                                 <executions>
396                                                         <execution>
397                                                                 <id>swagger-generate-sources</id>
398                                                                 <phase>generate-sources</phase>
399                                                                 <goals>
400                                                                         <goal>exec</goal>
401                                                                 </goals>
402                                                                 <configuration>
403                                                                         <executable>${project.build.directory}${file.separator}${swagger.sdk.script.file}</executable>
404                                                                 </configuration>
405                                                         </execution>
406                                                 </executions>
407                                         </plugin>
408                                         <plugin>
409                                                 <groupId>org.apache.maven.plugins</groupId>
410                                                 <artifactId>maven-clean-plugin</artifactId>
411                                                 <version>3.0.0</version>
412                                                 <executions>
413                                                         <execution>
414                                                                 <id>clean-generated-files</id>
415                                                                 <phase>generate-sources</phase>
416                                                                 <goals>
417                                                                         <goal>clean</goal>
418                                                                 </goals>
419                                                                 <configuration>
420                                                                         <filesets>
421                                                                                 <fileset>
422                                                                                         <directory>${project.build.directory}/generated-sources</directory>
423                                                                                 </fileset>
424                                                                         </filesets>
425                                                                 </configuration>
426                                                         </execution>
427                                                 </executions>
428                                         </plugin>
429                                 </plugins>
430                         </build>
431                         <dependencies>
432                                 <dependency>
433                                         <groupId>org.onap.msb.swagger-sdk</groupId>
434                                         <artifactId>swagger-sdk</artifactId>
435                                         <version>1.0.0</version>
436                                 </dependency>
437                         </dependencies>
438                 </profile>
439
440                 <!-- End of profiles from ONAP oparent -->
441
442         </profiles>
443
444
445         <dependencyManagement>
446                 <dependencies>
447                         <dependency>
448                                 <groupId>org.opendaylight.controller</groupId>
449                                 <artifactId>mdsal-artifacts</artifactId>
450                                 <version>${odl.mdsal.version}</version>
451                                 <type>pom</type>
452                                 <scope>import</scope>
453                         </dependency>
454                         <dependency>
455                                 <groupId>org.opendaylight.mdsal.model</groupId>
456                                 <artifactId>mdsal-model-artifacts</artifactId>
457                                 <version>${odl.mdsal.model.version}</version>
458                                 <type>pom</type>
459                                 <scope>import</scope>
460                         </dependency>
461                         <dependency>
462                                 <groupId>org.onap.ccsdk.sli.core</groupId>
463                                 <artifactId>sli-common</artifactId>
464                                 <version>${ccsdk.sli.core.version}</version>
465                         </dependency>
466
467                         <dependency>
468                                 <groupId>org.onap.ccsdk.sli.core</groupId>
469                                 <artifactId>sli-provider</artifactId>
470                                 <version>${ccsdk.sli.core.version}</version>
471                         </dependency>
472                         <dependency>
473                                 <groupId>org.onap.ccsdk.sli.core</groupId>
474                                 <artifactId>ccsdk-sli</artifactId>
475                                 <version>${ccsdk.sli.core.version}</version>
476                                 <type>xml</type>
477                                 <classifier>features</classifier>
478                         </dependency>
479                         <dependency>
480                                 <groupId>org.onap.ccsdk.sli.adaptors</groupId>
481                                 <artifactId>aai-service-provider</artifactId>
482                                 <version>${sdnctl.aai.service.version}</version>
483                         </dependency>
484
485                         <dependency>
486                                 <groupId>org.onap.ccsdk.sli.core</groupId>
487                                 <artifactId>dblib-provider</artifactId>
488                                 <version>${sdnctl.dblib.version}</version>
489                         </dependency>
490
491                         <dependency>
492                                 <groupId>org.testng</groupId>
493                                 <artifactId>testng</artifactId>
494                                 <version>6.11</version>
495                         </dependency>
496                         <dependency>
497                                 <groupId>org.springframework</groupId>
498                                 <artifactId>spring-test</artifactId>
499                                 <version>${spring.version}</version>
500                         </dependency>
501                         <dependency>
502                                 <groupId>org.springframework</groupId>
503                                 <artifactId>spring-beans</artifactId>
504                                 <version>${spring.version}</version>
505                         </dependency>
506                         <dependency>
507                                 <groupId>org.springframework</groupId>
508                                 <artifactId>spring-context</artifactId>
509                                 <version>${spring.version}</version>
510                         </dependency>
511                         <dependency>
512                                 <groupId>com.att.eelf</groupId>
513                                 <artifactId>eelf-core</artifactId>
514                                 <version>${eelf.version}</version>
515                         </dependency>
516                         <dependency>
517                                 <groupId>org.apache.derby</groupId>
518                                 <artifactId>derby</artifactId>
519                                 <version>${derby.version}</version>
520                                 <scope>test</scope>
521                         </dependency>
522                 </dependencies>
523
524         </dependencyManagement>
525
526
527         <reporting>
528                 <plugins>
529                         <plugin>
530                                 <artifactId>maven-javadoc-plugin</artifactId>
531                                 <version>2.10.4</version>
532                                 <configuration>
533                                         <failOnError>false</failOnError>
534                                         <doclet>org.umlgraph.doclet.UmlGraphDoc</doclet>
535                                         <docletArtifact>
536                                                 <groupId>org.umlgraph</groupId>
537                                                 <artifactId>umlgraph</artifactId>
538                                                 <version>5.6</version>
539                                         </docletArtifact>
540                                         <additionalparam>-views</additionalparam>
541                                         <useStandardDocletOptions>true</useStandardDocletOptions>
542                                         <excludePackageNames>org.opendaylight.*</excludePackageNames>
543                                         <additionalDependencies>
544                                                 <additionalDependency>
545                                                         <groupId>org.slf4j</groupId>
546                                                         <artifactId>slf4j-api</artifactId>
547                                                         <version>${slf4j.version}</version>
548                                                 </additionalDependency>
549                                                 <additionalDependency>
550                                                         <groupId>org.antlr</groupId>
551                                                         <artifactId>antlr4</artifactId>
552                                                         <version>${antlr.version}</version>
553                                                 </additionalDependency>
554                                                 <additionalDependency>
555                                                         <groupId>org.antlr</groupId>
556                                                         <artifactId>antlr4-runtime</artifactId>
557                                                         <version>${antlr.version}</version>
558                                                 </additionalDependency>
559
560                                                 <additionalDependency>
561                                                         <groupId>com.sun.jersey</groupId>
562                                                         <artifactId>jersey-client</artifactId>
563                                                         <version>${jersey.json.version}</version>
564                                                 </additionalDependency>
565                                                 <additionalDependency>
566                                                         <groupId>com.sun.jersey</groupId>
567                                                         <artifactId>jersey-core</artifactId>
568                                                         <version>${jersey.json.version}</version>
569                                                 </additionalDependency>
570                                                 <additionalDependency>
571                                                         <groupId>org.apache.httpcomponents</groupId>
572                                                         <artifactId>httpcore-osgi</artifactId>
573                                                         <version>${apache.httpcomponents.core.version}</version>
574                                                 </additionalDependency>
575                                                 <additionalDependency>
576                                                         <groupId>org.apache.httpcomponents</groupId>
577                                                         <artifactId>httpclient-osgi</artifactId>
578                                                         <version>${apache.httpcomponents.client.version}</version>
579                                                 </additionalDependency>
580                                                 <additionalDependency>
581                                                         <groupId>com.fasterxml.jackson.core</groupId>
582                                                         <artifactId>jackson-databind</artifactId>
583                                                         <version>${fasterxml.jackson.version}</version>
584                                                 </additionalDependency>
585                                                 <additionalDependency>
586                                                         <groupId>com.fasterxml.jackson.core</groupId>
587                                                         <artifactId>jackson-annotations</artifactId>
588                                                         <version>${fasterxml.jackson.version}</version>
589                                                 </additionalDependency>
590                                                 <additionalDependency>
591                                                         <groupId>com.fasterxml.jackson.core</groupId>
592                                                         <artifactId>jackson-core</artifactId>
593                                                         <version>${fasterxml.jackson.version}</version>
594                                                 </additionalDependency>
595                                                 <additionalDependency>
596                                                         <groupId>commons-lang</groupId>
597                                                         <artifactId>commons-lang</artifactId>
598                                                         <version>${commons.lang.version}</version>
599                                                 </additionalDependency>
600                                         </additionalDependencies>
601                                 </configuration>
602                                 <reportSets>
603                                         <reportSet>
604                                                 <reports>
605                                                         <report>javadoc-no-fork</report>
606                                                         <report>test-javadoc-no-fork</report>
607                                                 </reports>
608                                         </reportSet>
609                                         <reportSet>
610                                                 <id>aggregate</id>
611                                                 <reports>
612                                                         <report>aggregate</report>
613                                                         <report>test-aggregate</report>
614                                                 </reports>
615                                         </reportSet>
616                                 </reportSets>
617                         </plugin>
618                         <plugin>
619                                 <groupId>org.apache.maven.plugins</groupId>
620                                 <artifactId>maven-jxr-plugin</artifactId>
621                                 <version>2.3</version>
622                                 <reportSets>
623                                         <reportSet>
624                                                 <id>aggregate</id>
625                                                 <reports>
626                                                         <report>aggregate</report>
627                                                         <report>test-aggregate</report>
628                                                 </reports>
629                                         </reportSet>
630                                 </reportSets>
631                         </plugin>
632
633                         <plugin>
634                                 <artifactId>maven-surefire-plugin</artifactId>
635                                 <version>2.17</version>
636                         </plugin>
637                         <plugin>
638                                 <groupId>org.apache.maven.plugins</groupId>
639                                 <artifactId>maven-changelog-plugin</artifactId>
640                                 <version>2.3</version>
641                                 <reportSets>
642                                         <reportSet>
643                                                 <id>dual-report</id>
644                                                 <configuration>
645                                                         <type>range</type>
646                                                         <range>30</range>
647                                                 </configuration>
648                                                 <reports>
649                                                         <report>changelog</report>
650                                                         <report>file-activity</report>
651                                                 </reports>
652                                         </reportSet>
653                                 </reportSets>
654                         </plugin>
655                         <plugin>
656                                 <groupId>org.codehaus.mojo</groupId>
657                                 <artifactId>taglist-maven-plugin</artifactId>
658                                 <version>2.4</version>
659                         </plugin>
660                 </plugins>
661         </reporting>
662
663
664         <pluginRepositories>
665                 <pluginRepository>
666                         <id>onap-public</id>
667                         <url>${onap.nexus.public-url}</url>
668                         <releases>
669                                 <enabled>true</enabled>
670                         </releases>
671                         <snapshots>
672                                 <enabled>true</enabled>
673                         </snapshots>
674                 </pluginRepository>
675                 <pluginRepository>
676                         <id>onap-staging</id>
677                         <url>${onap.nexus.staging-url}</url>
678                         <releases>
679                                 <enabled>true</enabled>
680                         </releases>
681                         <snapshots>
682                                 <enabled>true</enabled>
683                         </snapshots>
684                 </pluginRepository>
685                 <pluginRepository>
686                         <id>onap-snapshot</id>
687                         <url>${onap.nexus.snapshot-url}</url>
688                         <releases>
689                                 <enabled>false</enabled>
690                         </releases>
691                         <snapshots>
692                                 <enabled>true</enabled>
693                         </snapshots>
694                 </pluginRepository>
695                 <pluginRepository>
696                         <id>opendaylight-mirror</id>
697                         <name>opendaylight-mirror</name>
698                         <url>${opendaylight.nexus.public-url}</url>
699                         <releases>
700                                 <enabled>true</enabled>
701                                 <updatePolicy>never</updatePolicy>
702                         </releases>
703                         <snapshots>
704                                 <enabled>false</enabled>
705                         </snapshots>
706                 </pluginRepository>
707                 <pluginRepository>
708                         <id>opendaylight-snapshot</id>
709                         <name>opendaylight-snapshot</name>
710                         <url>${opendaylight.nexus.snapshot-url}</url>
711                         <releases>
712                                 <enabled>false</enabled>
713                         </releases>
714                         <snapshots>
715                                 <enabled>true</enabled>
716                         </snapshots>
717                 </pluginRepository>
718                 <!-- Black Duck plugin dependencies -->
719                 <pluginRepository>
720                         <id>JCenter</id>
721                         <name>JCenter Repository</name>
722                         <url>http://jcenter.bintray.com</url>
723                 </pluginRepository>
724
725                 <pluginRepository>
726                         <id>Restlet</id>
727                         <name>Restlet Repository</name>
728                         <url>http://maven.restlet.com</url>
729                 </pluginRepository>
730         </pluginRepositories>
731
732
733         <repositories>
734                 <repository>
735                         <id>onap-public</id>
736                         <url>https://nexus.onap.org/content/groups/public</url>
737                         <releases>
738                                 <enabled>true</enabled>
739                                 <updatePolicy>never</updatePolicy>
740                         </releases>
741                         <snapshots>
742                                 <enabled>true</enabled>
743                                 <updatePolicy>always</updatePolicy>
744                         </snapshots>
745                 </repository>
746                 <repository>
747                         <id>onap-staging</id>
748                         <url>https://nexus.onap.org/content/groups/staging</url>
749                         <releases>
750                                 <enabled>true</enabled>
751                                 <updatePolicy>never</updatePolicy>
752                         </releases>
753                         <snapshots>
754                                 <enabled>true</enabled>
755                                 <updatePolicy>always</updatePolicy>
756                         </snapshots>
757                 </repository>
758                 <repository>
759                         <id>ecomp-release</id>
760                         <name>onap-repository-releases</name>
761                         <url>https://nexus.onap.org/content/repositories/releases</url>
762                         <releases>
763                                 <enabled>true</enabled>
764                                 <updatePolicy>never</updatePolicy>
765                         </releases>
766                         <snapshots>
767                                 <enabled>false</enabled>
768                         </snapshots>
769                 </repository>
770                 <repository>
771                         <id>ecomp-snapshot</id>
772                         <name>onap-repository-snapshots</name>
773                         <url>https://nexus.onap.org/content/repositories/snapshots</url>
774                         <releases>
775                                 <enabled>false</enabled>
776                         </releases>
777                         <snapshots>
778                                 <enabled>true</enabled>
779                         </snapshots>
780                 </repository>
781                 <repository>
782                         <id>opendaylight-mirror</id>
783                         <name>opendaylight-mirror</name>
784                         <url>https://nexus.opendaylight.org/content/repositories/public/</url>
785                         <releases>
786                                 <enabled>true</enabled>
787                                 <updatePolicy>never</updatePolicy>
788                         </releases>
789                         <snapshots>
790                                 <enabled>false</enabled>
791                         </snapshots>
792                 </repository>
793                 <repository>
794                         <id>opendaylight-snapshot</id>
795                         <name>opendaylight-snapshot</name>
796                         <url>https://nexus.opendaylight.org/content/repositories/opendaylight.snapshot/</url>
797                         <releases>
798                                 <enabled>false</enabled>
799                         </releases>
800                         <snapshots>
801                                 <enabled>true</enabled>
802                         </snapshots>
803                 </repository>
804
805         </repositories>
806
807         <distributionManagement>
808                 <repository>
809                         <id>ecomp-releases</id>
810                         <url>http://nexus.onap.org/content/repositories/releases</url>
811                 </repository>
812                 <snapshotRepository>
813                         <id>ecomp-snapshots</id>
814                         <url>http://nexus.onap.org/content/repositories/snapshots</url>
815                 </snapshotRepository>
816         </distributionManagement>
817
818         <build>
819                 <pluginManagement>
820                         <plugins>
821
822                                 <!-- Plugins from ONAP oparent -->
823                                 <plugin>
824                                         <groupId>org.apache.maven.plugins</groupId>
825                                         <artifactId>maven-deploy-plugin</artifactId>
826                                         <!-- This version supports the "deployAtEnd" parameter -->
827                                         <version>2.8</version>
828                                         <configuration>
829                                                 <skip />
830                                         </configuration>
831                                 </plugin>
832
833                                 <plugin>
834                                         <groupId>org.apache.maven.plugins</groupId>
835                                         <artifactId>maven-site-plugin</artifactId>
836                                         <version>3.6</version>
837                                         <dependencies>
838                                                 <dependency>
839                                                         <groupId>org.apache.maven.wagon</groupId>
840                                                         <artifactId>wagon-webdav-jackrabbit</artifactId>
841                                                         <version>2.10</version>
842                                                 </dependency>
843                                                 <dependency>
844                                                         <groupId>org.apache.maven.doxia</groupId>
845                                                         <artifactId>doxia-core</artifactId>
846                                                         <version>1.7</version>
847                                                 </dependency>
848                                                 <dependency>
849                                                         <groupId>org.apache.maven.doxia</groupId>
850                                                         <artifactId>doxia-sink-api</artifactId>
851                                                         <version>1.7</version>
852                                                 </dependency>
853                                                 <dependency>
854                                                         <groupId>org.apache.maven.doxia</groupId>
855                                                         <artifactId>doxia-logging-api</artifactId>
856                                                         <version>1.7</version>
857                                                 </dependency>
858                                         </dependencies>
859                                         <executions>
860                                                 <execution>
861                                                         <id>attach-descriptor</id>
862                                                         <goals>
863                                                                 <goal>attach-descriptor</goal>
864                                                         </goals>
865                                                 </execution>
866                                         </executions>
867                                 </plugin>
868                                 <plugin>
869                                         <artifactId>maven-checkstyle-plugin</artifactId>
870                                         <version>2.17</version>
871                                         <dependencies>
872                                                 <dependency>
873                                                         <groupId>org.onap.oparent</groupId>
874                                                         <artifactId>checkstyle</artifactId>
875                                                         <version>1.1.1</version>
876                                                 </dependency>
877                                         </dependencies>
878                                         <executions>
879                                                 <execution>
880                                                         <id>check-license</id>
881                                                         <goals>
882                                                                 <goal>check</goal>
883                                                         </goals>
884                                                         <phase>process-sources</phase>
885                                                         <configuration>
886                                                                 <configLocation>onap-checkstyle/check-license.xml</configLocation>
887                                                                 <headerLocation>onap-checkstyle/apache-license-2.regexp.txt</headerLocation>
888                                                                 <includeResources>false</includeResources>
889                                                                 <includeTestSourceDirectory>true</includeTestSourceDirectory>
890                                                                 <includeTestResources>false</includeTestResources>
891                                                                 <sourceDirectory>${project.build.sourceDirectory}</sourceDirectory>
892                                                                 <excludes>
893                                                                 </excludes>
894                                                                 <failsOnError>false</failsOnError>
895                                                                 <consoleOutput>true</consoleOutput>
896                                                         </configuration>
897                                                 </execution>
898                                                 <execution>
899                                                         <id>check-style</id>
900                                                         <goals>
901                                                                 <goal>check</goal>
902                                                         </goals>
903                                                         <phase>process-sources</phase>
904                                                         <configuration>
905                                                                 <!-- Use Google Java Style Guide: https://github.com/checkstyle/checkstyle/blob/master/src/main/resources/google_checks.xml 
906                                                                         with minor changes -->
907                                                                 <configLocation>onap-checkstyle/onap-java-style.xml</configLocation>
908                                                                 <!-- <sourceDirectory> is needed so that checkstyle ignores the generated 
909                                                                         sources directory -->
910                                                                 <sourceDirectory>${project.build.sourceDirectory}/src/main/java</sourceDirectory>
911                                                                 <includeResources>true</includeResources>
912                                                                 <includeTestSourceDirectory>true</includeTestSourceDirectory>
913                                                                 <includeTestResources>true</includeTestResources>
914                                                                 <excludes>
915                                                                 </excludes>
916                                                                 <failsOnError>false</failsOnError>
917                                                                 <consoleOutput>true</consoleOutput>
918                                                         </configuration>
919                                                 </execution>
920                                         </executions>
921                                 </plugin>
922                                 <plugin>
923                                         <groupId>org.jacoco</groupId>
924                                         <artifactId>jacoco-maven-plugin</artifactId>
925                                         <version>${jacoco.version}</version>
926                                         <configuration>
927                                                 <!-- Note: This exclusion list should match <sonar.exclusions> property 
928                                                         above -->
929                                                 <excludes>
930                                                         <exclude>**/gen/**</exclude>
931                                                         <exclude>**/generated-sources/**</exclude>
932                                                         <exclude>**/yang-gen/**</exclude>
933                                                         <exclude>**/pax/**</exclude>
934                                                 </excludes>
935                                         </configuration>
936                                         <executions>
937                                                 <!-- Prepares the property pointing to the JaCoCo runtime agent which 
938                                                         is passed as VM argument when Maven the Surefire plugin is executed. -->
939                                                 <execution>
940                                                         <id>pre-unit-test</id>
941                                                         <goals>
942                                                                 <goal>prepare-agent</goal>
943                                                         </goals>
944                                                         <configuration>
945                                                                 <!-- Sets the path to the file which contains the execution data. -->
946                                                                 <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
947                                                                 <!-- Sets the name of the property containing the settings for JaCoCo 
948                                                                         runtime agent. -->
949                                                                 <propertyName>surefireArgLine</propertyName>
950                                                         </configuration>
951                                                 </execution>
952                                                 <!-- Ensures that the code coverage report for unit tests is created 
953                                                         after unit tests have been run. -->
954                                                 <execution>
955                                                         <id>post-unit-test</id>
956                                                         <phase>test</phase>
957                                                         <goals>
958                                                                 <goal>report</goal>
959                                                         </goals>
960                                                         <configuration>
961                                                                 <!-- Sets the path to the file which contains the execution data. -->
962                                                                 <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
963                                                                 <!-- Sets the output directory for the code coverage report. -->
964                                                                 <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
965                                                         </configuration>
966                                                 </execution>
967                                                 <execution>
968                                                         <id>pre-integration-test</id>
969                                                         <phase>pre-integration-test</phase>
970                                                         <goals>
971                                                                 <goal>prepare-agent</goal>
972                                                         </goals>
973                                                         <configuration>
974                                                                 <!-- Sets the path to the file which contains the execution data. -->
975                                                                 <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
976                                                                 <!-- Sets the name of the property containing the settings for JaCoCo 
977                                                                         runtime agent. -->
978                                                                 <propertyName>failsafeArgLine</propertyName>
979                                                         </configuration>
980                                                 </execution>
981                                                 <!-- Ensures that the code coverage report for integration tests after 
982                                                         integration tests have been run. -->
983                                                 <execution>
984                                                         <id>post-integration-test</id>
985                                                         <phase>post-integration-test</phase>
986                                                         <goals>
987                                                                 <goal>report</goal>
988                                                         </goals>
989                                                         <configuration>
990                                                                 <!-- Sets the path to the file which contains the execution data. -->
991                                                                 <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
992                                                                 <!-- Sets the output directory for the code coverage report. -->
993                                                                 <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
994                                                         </configuration>
995                                                 </execution>
996                                         </executions>
997                                 </plugin>
998                                 <plugin>
999                                         <groupId>org.apache.maven.plugins</groupId>
1000                                         <artifactId>maven-surefire-plugin</artifactId>
1001                                         <version>2.19.1</version>
1002                                         <configuration>
1003                                                 <!-- Sets the VM argument line used when unit tests are run. -->
1004                                                 <argLine>${surefireArgLine}</argLine>
1005                                                 <!-- Excludes integration tests when unit tests are run. -->
1006                                                 <excludes>
1007                                                         <exclude>**/IT*.java</exclude>
1008                                                 </excludes>
1009                                         </configuration>
1010                                 </plugin>
1011                                 <plugin>
1012                                         <groupId>org.apache.maven.plugins</groupId>
1013                                         <artifactId>maven-failsafe-plugin</artifactId>
1014                                         <version>2.19.1</version>
1015                                         <executions>
1016                                                 <!-- Ensures that both integration-test and verify goals of the Failsafe 
1017                                                         Maven plugin are executed. -->
1018                                                 <execution>
1019                                                         <id>integration-tests</id>
1020                                                         <goals>
1021                                                                 <goal>integration-test</goal>
1022                                                                 <goal>verify</goal>
1023                                                         </goals>
1024                                                         <configuration>
1025                                                                 <!-- Sets the VM argument line used when integration tests are run. -->
1026                                                                 <argLine>${failsafeArgLine}</argLine>
1027                                                         </configuration>
1028                                                 </execution>
1029                                         </executions>
1030                                 </plugin>
1031                                 <plugin>
1032                                         <groupId>org.apache.maven.plugins</groupId>
1033                                         <artifactId>maven-compiler-plugin</artifactId>
1034                                         <version>${maven.compile.plugin.version}</version>
1035                                         <configuration>
1036                                                 <source>${java.version.source}</source>
1037                                                 <target>${java.version.target}</target>
1038                                         </configuration>
1039                                 </plugin>
1040                                 <plugin>
1041                                         <groupId>org.sonarsource.scanner.maven</groupId>
1042                                         <artifactId>sonar-maven-plugin</artifactId>
1043                                         <version>3.3.0.603</version>
1044                                 </plugin>
1045
1046                                 <!-- End of plugins from ONAP oparent -->
1047
1048                                 <plugin>
1049                                         <groupId>org.apache.maven.plugins</groupId>
1050                                         <artifactId>maven-javadoc-plugin</artifactId>
1051                                         <version>2.10</version>
1052                                         <configuration>
1053                                                 <additionalDependencies>
1054                                                         <additionalDependency>
1055                                                                 <groupId>org.slf4j</groupId>
1056                                                                 <artifactId>slf4j-api</artifactId>
1057                                                                 <version>${slf4j.version}</version>
1058                                                         </additionalDependency>
1059                                                         <additionalDependency>
1060                                                                 <groupId>org.antlr</groupId>
1061                                                                 <artifactId>antlr4</artifactId>
1062                                                                 <version>${antlr.version}</version>
1063                                                         </additionalDependency>
1064                                                         <additionalDependency>
1065                                                                 <groupId>org.antlr</groupId>
1066                                                                 <artifactId>antlr4-runtime</artifactId>
1067                                                                 <version>${antlr.version}</version>
1068                                                         </additionalDependency>
1069
1070                                                         <additionalDependency>
1071                                                                 <groupId>com.sun.jersey</groupId>
1072                                                                 <artifactId>jersey-client</artifactId>
1073                                                                 <version>${jersey.client.version}</version>
1074                                                         </additionalDependency>
1075                                                         <additionalDependency>
1076                                                                 <groupId>com.sun.jersey</groupId>
1077                                                                 <artifactId>jersey-core</artifactId>
1078                                                                 <version>${jersey.version}</version>
1079                                                         </additionalDependency>
1080                                                         <additionalDependency>
1081                                                                 <groupId>org.apache.httpcomponents</groupId>
1082                                                                 <artifactId>httpcore-osgi</artifactId>
1083                                                                 <version>${apache.httpcomponents.core.version}</version>
1084                                                         </additionalDependency>
1085                                                         <additionalDependency>
1086                                                                 <groupId>org.apache.httpcomponents</groupId>
1087                                                                 <artifactId>httpclient-osgi</artifactId>
1088                                                                 <version>${apache.httpcomponents.client.version}</version>
1089                                                         </additionalDependency>
1090                                                         <additionalDependency>
1091                                                                 <groupId>com.fasterxml.jackson.core</groupId>
1092                                                                 <artifactId>jackson-databind</artifactId>
1093                                                                 <version>${jackson.version}</version>
1094                                                         </additionalDependency>
1095                                                         <additionalDependency>
1096                                                                 <groupId>com.fasterxml.jackson.core</groupId>
1097                                                                 <artifactId>jackson-annotations</artifactId>
1098                                                                 <version>${jackson.version}</version>
1099                                                         </additionalDependency>
1100                                                         <additionalDependency>
1101                                                                 <groupId>com.fasterxml.jackson.core</groupId>
1102                                                                 <artifactId>jackson-core</artifactId>
1103                                                                 <version>${jackson.version}</version>
1104                                                         </additionalDependency>
1105                                                         <additionalDependency>
1106                                                                 <groupId>commons-lang</groupId>
1107                                                                 <artifactId>commons-lang</artifactId>
1108                                                                 <version>${commons.lang.version}</version>
1109                                                         </additionalDependency>
1110                                                 </additionalDependencies>
1111                                         </configuration>
1112
1113                                         <executions>
1114                                                 <execution>
1115                                                         <id>aggregate</id>
1116                                                         <goals>
1117                                                                 <goal>aggregate</goal>
1118                                                         </goals>
1119                                                         <phase>site</phase>
1120
1121                                                 </execution>
1122                                         </executions>
1123                                 </plugin>
1124
1125                         </plugins>
1126
1127                 </pluginManagement>
1128
1129                 <plugins>
1130                         <!-- Plugins from ONAP oparent -->
1131                         <plugin>
1132                                 <artifactId>maven-checkstyle-plugin</artifactId>
1133                         </plugin>
1134                         <plugin>
1135                                 <groupId>org.codehaus.mojo</groupId>
1136                                 <artifactId>build-helper-maven-plugin</artifactId>
1137                                 <version>1.12</version>
1138                         </plugin>
1139                         <!-- Jacoco / Sonar -->
1140                         <plugin>
1141                                 <groupId>org.jacoco</groupId>
1142                                 <artifactId>jacoco-maven-plugin</artifactId>
1143                         </plugin>
1144                         <plugin>
1145                                 <groupId>org.apache.maven.plugins</groupId>
1146                                 <artifactId>maven-surefire-plugin</artifactId>
1147                         </plugin>
1148                         <plugin>
1149                                 <groupId>org.apache.maven.plugins</groupId>
1150                                 <artifactId>maven-failsafe-plugin</artifactId>
1151                         </plugin>
1152
1153                         <!-- End of plugins from ONAP oparent -->
1154                         <plugin>
1155                                 <groupId>org.codehaus.mojo</groupId>
1156                                 <artifactId>properties-maven-plugin</artifactId>
1157                                 <version>1.0.0</version>
1158                                 <executions>
1159                                         <execution>
1160                                                 <goals>
1161                                                         <goal>set-system-properties</goal>
1162                                                 </goals>
1163                                                 <configuration>
1164                                                         <properties>
1165                                                                 <property>
1166                                                                         <name>maven.wagon.http.ssl.allowall</name>
1167                                                                         <value>${ssl.allowall}</value>
1168                                                                 </property>
1169                                                                 <property>
1170                                                                         <name>maven.wagon.http.ssl.insecure</name>
1171                                                                         <value>${ssl.insecure}</value>
1172                                                                 </property>
1173                                                         </properties>
1174                                                 </configuration>
1175                                         </execution>
1176                                 </executions>
1177                         </plugin>
1178                         <plugin>
1179                                 <groupId>org.sonatype.plugins</groupId>
1180                                 <artifactId>nexus-staging-maven-plugin</artifactId>
1181                                 <version>1.6.7</version>
1182                                 <extensions>true</extensions>
1183                                 <configuration>
1184                                         <nexusUrl>${onap.nexus.url}</nexusUrl>
1185                                         <stagingProfileId>176c31dfe190a</stagingProfileId>
1186                                         <serverId>ecomp-staging</serverId>
1187                                 </configuration>
1188                         </plugin>
1189                         <plugin>
1190                                 <groupId>org.codehaus.mojo</groupId>
1191                                 <artifactId>versions-maven-plugin</artifactId>
1192                                 <version>2.5</version>
1193                                 <configuration>
1194                                         <processAllModules>true</processAllModules>
1195                                 </configuration>
1196                         </plugin>
1197                         <plugin>
1198                                 <artifactId>maven-scm-plugin</artifactId>
1199                                 <version>1.8.1</version>
1200                                 <configuration>
1201                                         <tag>${project.artifactId}-${project.version}</tag>
1202                                 </configuration>
1203                         </plugin>
1204                 </plugins>
1205         </build>
1206         <organization>
1207                 <name>ONAP</name>
1208         </organization>
1209 </project>