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