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