Bump dmaap client version
[ccsdk/parent.git] / oparent / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3     <modelVersion>4.0.0</modelVersion>
4
5     <parent>
6         <groupId>org.onap.oparent</groupId>
7         <artifactId>oparent</artifactId>
8         <version>3.2.0</version>
9         <relativePath/>
10     </parent>
11
12     <groupId>org.onap.ccsdk.parent</groupId>
13     <artifactId>oparent</artifactId>
14     <version>2.2.0-SNAPSHOT</version>
15     <packaging>pom</packaging>
16
17     <name>ONAP :: ${project.groupId} :: ${project.artifactId}</name>
18     <description>Root POM to be used in place of oparent for CCSDK based projects</description>
19     <url>http://wiki.onap.org</url>
20     <organization>
21         <name>ONAP</name>
22     </organization>
23
24     <issueManagement>
25         <system>JIRA</system>
26         <url>https://jira.onap.org/</url>
27     </issueManagement>
28
29     <properties>
30         <!-- Sonar properties -->
31         <sonar.scanner.version>3.7.0.1746</sonar.scanner.version>
32         <sonar-jacoco-listeners.version>3.2</sonar-jacoco-listeners.version>
33         <sonar.core.codeCoveragePlugin>jacoco</sonar.core.codeCoveragePlugin>
34         <!-- Default Sonar configuration -->
35         <sonar.coverage.jacoco.xmlReportPaths>${project.reporting.outputDirectory}/jacoco-ut/jacoco.xml,${project.reporting.outputDirectory}/jacoco-it/jacoco.xml</sonar.coverage.jacoco.xmlReportPaths>
36         <!-- Note: This list should match jacoco-maven-plugin's exclusion list below -->
37         <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
38
39         <!-- Jacoco properties -->
40         <jacoco.version>0.8.5</jacoco.version>
41         <!-- ONAP repositories -->
42         <onap.nexus.url>https://nexus.onap.org</onap.nexus.url>
43         <onap.nexus.host>nexus.onap.org</onap.nexus.host>
44         <onap.nexus.port>443</onap.nexus.port>
45         <onap.nexus.protocol>https</onap.nexus.protocol>
46         <onap.nexus.public-url>https://nexus.onap.org/content/groups/public</onap.nexus.public-url>
47         <onap.nexus.staging-url>https://nexus.onap.org/content/groups/staging</onap.nexus.staging-url>
48         <onap.nexus.release-url>https://nexus.onap.org/content/repositories/releases</onap.nexus.release-url>
49         <onap.nexus.snapshot-url>https://nexus.onap.org/content/repositories/snapshots</onap.nexus.snapshot-url>
50         <onap.nexus.staging.server-id>ecomp-staging</onap.nexus.staging.server-id>
51         <onap.nexus.staging.profile-id>176c31dfe190a</onap.nexus.staging.profile-id>
52
53         <java.version>11</java.version>
54         <maven-surefire-plugin.version>3.0.0-M5</maven-surefire-plugin.version>
55         <maven-failsafe-plugin.version>3.0.0-M5</maven-failsafe-plugin.version>
56         <bundle.plugin.version>4.2.1</bundle.plugin.version>
57         <maven-compiler-plugin.version>3.8.1</maven-compiler-plugin.version>
58         <checkstyle.skip>true</checkstyle.skip>
59
60         <!-- CCSDK component versions -->
61         <ccsdk.cds.version>1.2.0-SNAPSHOT</ccsdk.cds.version>
62         <ccsdk.features.version>1.2.0-SNAPSHOT</ccsdk.features.version>
63         <ccsdk.sli.version>1.3.0-SNAPSHOT</ccsdk.sli.version>
64         <ccsdk.sli.core.version>${ccsdk.sli.version}</ccsdk.sli.core.version>
65         <ccsdk.sli.adaptors.version>${ccsdk.sli.version}</ccsdk.sli.adaptors.version>
66         <ccsdk.sli.northbound.version>${ccsdk.sli.version}</ccsdk.sli.northbound.version>
67         <ccsdk.sli.plugins.version>${ccsdk.sli.version}</ccsdk.sli.plugins.version>
68         <ccsdk.distribution.version>1.1.1-SNAPSHOT</ccsdk.distribution.version>
69
70         <mariadb.connector.version>2.4.4</mariadb.connector.version>
71         <fasterxml.jackson.version>2.10.5</fasterxml.jackson.version>
72         <velocity.version>2.0</velocity.version>
73         <dmaap.listener.version>1.1.12</dmaap.listener.version>
74         <sdc.client.version>1.4.1</sdc.client.version>
75         <sdc.tosca.version>1.6.5</sdc.tosca.version>
76
77         <antlr.version>4.8-1</antlr.version>
78     </properties>
79
80     <dependencyManagement>
81         <dependencies>
82             <dependency>
83                 <!-- keep groupId and version as plain and not as var,
84                 otherwise ccsdk/distribution/dependencies is not resolving correctly -->
85                 <groupId>org.onap.ccsdk.parent</groupId>
86                 <artifactId>dependencies-bom</artifactId>
87                 <version>2.2.0-SNAPSHOT</version>
88                 <type>pom</type>
89                 <scope>import</scope>
90             </dependency>
91             <dependency>
92                 <groupId>org.springframework.boot</groupId>
93                 <artifactId>spring-boot-dependencies</artifactId>
94                 <version>2.3.8.RELEASE</version>
95                 <type>pom</type>
96                 <scope>import</scope>
97             </dependency>
98             <dependency>
99                  <groupId>org.antlr</groupId>
100                  <artifactId>antlr4-runtime</artifactId>
101                  <version>${antlr.version}</version>
102             </dependency>
103             <dependency>
104                 <groupId>org.onap.sdc.sdc-distribution-client</groupId>
105                 <artifactId>sdc-distribution-client</artifactId>
106                 <version>${sdc.client.version}</version>
107                 <scope>compile</scope>
108             </dependency>
109             <dependency>
110                 <groupId>org.onap.sdc.sdc-tosca</groupId>
111                 <artifactId>sdc-tosca</artifactId>
112                 <version>${sdc.tosca.version}</version>
113                 <scope>compile</scope>
114             </dependency>
115             <dependency>
116                 <groupId>org.onap.dmaap.messagerouter.dmaapclient</groupId>
117                 <artifactId>dmaapClient</artifactId>
118                 <version>${dmaap.listener.version}</version>
119             </dependency>
120         </dependencies>
121     </dependencyManagement>
122     <dependencies>
123         <dependency>
124             <groupId>javax.annotation</groupId>
125             <artifactId>javax.annotation-api</artifactId>
126             <version>1.3.2</version>
127         </dependency>
128         <dependency>
129             <groupId>junit</groupId>
130             <artifactId>junit</artifactId>
131             <scope>test</scope>
132         </dependency>
133         <dependency>
134             <groupId>org.slf4j</groupId>
135             <artifactId>slf4j-api</artifactId>
136             <scope>provided</scope>
137         </dependency>
138         <dependency>
139             <groupId>org.slf4j</groupId>
140             <artifactId>slf4j-simple</artifactId>
141             <scope>test</scope>
142         </dependency>
143         <dependency>
144             <groupId>org.mockito</groupId>
145             <artifactId>mockito-core</artifactId>
146             <version>1.10.19</version>
147             <scope>test</scope>
148         </dependency>
149         <dependency>
150             <groupId>org.testng</groupId>
151             <artifactId>testng</artifactId>
152             <version>6.11</version>
153             <scope>test</scope>
154         </dependency>
155     </dependencies>
156
157     <repositories>
158         <repository>
159             <id>onap-public</id>
160             <url>${onap.nexus.public-url}</url>
161             <releases>
162                 <enabled>true</enabled>
163                 <updatePolicy>never</updatePolicy>
164             </releases>
165             <snapshots>
166                 <enabled>true</enabled>
167                 <updatePolicy>always</updatePolicy>
168             </snapshots>
169         </repository>
170         <repository>
171             <id>onap-staging</id>
172             <url>${onap.nexus.staging-url}</url>
173             <releases>
174                 <enabled>true</enabled>
175                 <updatePolicy>never</updatePolicy>
176             </releases>
177             <snapshots>
178                 <enabled>true</enabled>
179                 <updatePolicy>always</updatePolicy>
180             </snapshots>
181         </repository>
182         <repository>
183             <id>ecomp-release</id>
184             <name>onap-repository-releases</name>
185             <url>${onap.nexus.release-url}</url>
186             <releases>
187                 <enabled>true</enabled>
188                 <updatePolicy>never</updatePolicy>
189             </releases>
190             <snapshots>
191                 <enabled>false</enabled>
192             </snapshots>
193         </repository>
194         <repository>
195             <id>ecomp-snapshot</id>
196             <name>onap-repository-snapshots</name>
197             <url>${onap.nexus.snapshot-url}</url>
198             <releases>
199                 <enabled>false</enabled>
200             </releases>
201             <snapshots>
202                 <enabled>true</enabled>
203             </snapshots>
204         </repository>
205     </repositories>
206     <pluginRepositories>
207         <pluginRepository>
208             <id>onap-public</id>
209             <url>${onap.nexus.public-url}</url>
210             <releases>
211                 <enabled>true</enabled>
212             </releases>
213             <snapshots>
214                 <enabled>true</enabled>
215             </snapshots>
216         </pluginRepository>
217         <pluginRepository>
218             <id>onap-staging</id>
219             <url>${onap.nexus.staging-url}</url>
220             <releases>
221                 <enabled>true</enabled>
222             </releases>
223             <snapshots>
224                 <enabled>true</enabled>
225             </snapshots>
226         </pluginRepository>
227         <pluginRepository>
228             <id>onap-snapshot</id>
229             <url>${onap.nexus.snapshot-url}</url>
230             <releases>
231                 <enabled>false</enabled>
232             </releases>
233             <snapshots>
234                 <enabled>true</enabled>
235             </snapshots>
236         </pluginRepository>
237         <!-- Black Duck plugin dependencies -->
238         <pluginRepository>
239             <id>JCenter</id>
240             <name>JCenter Repository</name>
241             <url>http://jcenter.bintray.com</url>
242         </pluginRepository>
243         <pluginRepository>
244             <id>Restlet</id>
245             <name>Restlet Repository</name>
246             <url>http://maven.restlet.com</url>
247         </pluginRepository>
248     </pluginRepositories>
249
250     <build>
251         <pluginManagement>
252             <plugins>
253                 <plugin>
254                     <groupId>org.apache.maven.plugins</groupId>
255                     <artifactId>maven-deploy-plugin</artifactId>
256                     <!-- This version supports the "deployAtEnd" parameter -->
257                     <version>2.8</version>
258                     <configuration>
259                         <skip/>
260                         <deployAtEnd>true</deployAtEnd>
261                     </configuration>
262                  </plugin>
263                  <plugin>
264                     <groupId>org.apache.maven.plugins</groupId>
265                     <artifactId>maven-compiler-plugin</artifactId>
266                     <version>${maven-compiler-plugin.version}</version>
267                     <configuration>
268                         <release>${java.version}</release>
269                         <!--explicitly remove source and target-->
270                         <source combine.self="override"/>
271                         <target combine.self="override"/>
272                     </configuration>
273                 </plugin>
274                 <plugin>
275                     <groupId>org.apache.maven.plugins</groupId>
276                     <artifactId>maven-resources-plugin</artifactId>
277                     <version>3.2.0</version>
278                 </plugin>
279                 <plugin>
280                     <groupId>org.antlr</groupId>
281                     <artifactId>antlr4-maven-plugin</artifactId>
282                     <version>${antlr.version}</version>
283                 </plugin>
284             </plugins>
285         </pluginManagement>
286         <plugins>
287             <!-- Jacoco / Sonar -->
288             <plugin>
289                 <groupId>org.jacoco</groupId>
290                 <artifactId>jacoco-maven-plugin</artifactId>
291                 <version>${jacoco.version}</version>
292                 <executions>
293                     <execution>
294                         <id>pre-unit-test</id>
295                         <goals>
296                             <goal>prepare-agent</goal>
297                         </goals>
298                         <configuration>
299                             <!-- Sets the path to the file which contains the execution data. -->
300                             <destFile>${project.build.directory}/code-coverage/jacoco-ut.exec</destFile>
301                             <!-- Sets the name of the property containing the settings for JaCoCo runtime agent. -->
302                             <propertyName>surefireArgLine</propertyName>
303                         </configuration>
304                     </execution>
305                     <!-- Ensures that the code coverage report for unit tests is created after unit tests have been run. -->
306                     <execution>
307                         <id>post-unit-test</id>
308                         <phase>test</phase>
309                         <goals>
310                             <goal>report</goal>
311                         </goals>
312                         <configuration>
313                             <!-- Sets the path to the file which contains the execution data. -->
314                             <dataFile>${project.build.directory}/code-coverage/jacoco-ut.exec</dataFile>
315                             <!-- Sets the output directory for the code coverage report. -->
316                             <outputDirectory>${project.reporting.outputDirectory}/jacoco-ut</outputDirectory>
317                         </configuration>
318                     </execution>
319                     <execution>
320                         <id>pre-integration-test</id>
321                         <phase>pre-integration-test</phase>
322                         <goals>
323                             <goal>prepare-agent</goal>
324                         </goals>
325                         <configuration>
326                             <!-- Sets the path to the file which contains the execution data. -->
327                             <destFile>${project.build.directory}/code-coverage/jacoco-it.exec</destFile>
328                             <!-- Sets the name of the property containing the settings for JaCoCo runtime agent. -->
329                             <propertyName>failsafeArgLine</propertyName>
330                         </configuration>
331                     </execution>
332                     <!-- Ensures that the code coverage report for integration tests after integration tests have been run. -->
333                     <execution>
334                         <id>post-integration-test</id>
335                         <phase>post-integration-test</phase>
336                         <goals>
337                             <goal>report</goal>
338                         </goals>
339                         <configuration>
340                             <!-- Sets the path to the file which contains the execution data. -->
341                             <dataFile>${project.build.directory}/code-coverage/jacoco-it.exec</dataFile>
342                             <!-- Sets the output directory for the code coverage report. -->
343                             <outputDirectory>${project.reporting.outputDirectory}/jacoco-it</outputDirectory>
344                         </configuration>
345                     </execution>
346                     <execution>
347                         <id>default-prepare-agent</id>
348                         <goals>
349                             <goal>prepare-agent</goal>
350                         </goals>
351                     </execution>
352                     <execution>
353                         <id>default-report</id>
354                         <phase>prepare-package</phase>
355                         <goals>
356                             <goal>report</goal>
357                         </goals>
358                     </execution>
359                     <execution>
360                         <id>default-check</id>
361                         <goals>
362                             <goal>check</goal>
363                         </goals>
364                         <configuration>
365                             <rules>
366                                 <rule>
367                                     <element>PACKAGE</element>
368                                     <limits>
369                                         <limit>
370                                             <counter>COMPLEXITY</counter>
371                                             <value>COVEREDRATIO</value>
372                                             <minimum>0.0</minimum>
373                                         </limit>
374                                     </limits>
375                                 </rule>
376                             </rules>
377                         </configuration>
378                     </execution>
379                 </executions>
380             </plugin>
381             <plugin>
382                 <groupId>org.codehaus.mojo</groupId>
383                 <artifactId>versions-maven-plugin</artifactId>
384                 <version>2.5</version>
385                 <configuration>
386                     <processAllModules>true</processAllModules>
387                 </configuration>
388             </plugin>
389             <plugin>
390                 <groupId>org.apache.felix</groupId>
391                 <artifactId>maven-bundle-plugin</artifactId>
392                 <version>${bundle.plugin.version}</version>
393                 <extensions>true</extensions>
394             </plugin>
395             <plugin>
396                 <groupId>org.eclipse.m2e</groupId>
397                 <artifactId>lifecycle-mapping</artifactId>
398                 <version>1.0.0</version>
399                 <configuration>
400                     <lifecycleMappingMetadata>
401                         <pluginExecutions>
402                             <pluginExecution>
403                                 <pluginExecutionFilter>
404                                     <groupId>org.apache.felix</groupId>
405                                     <artifactId>maven-bundle-plugin</artifactId>
406                                     <versionRange>[1.0,)</versionRange>
407                                     <goals>
408                                         <goal>manifest</goal>
409                                     </goals>
410                                 </pluginExecutionFilter>
411                                 <action>
412                                     <execute />
413                                     <ignore />
414                                 </action>
415                             </pluginExecution>
416                         </pluginExecutions>
417                     </lifecycleMappingMetadata>
418                 </configuration>
419             </plugin>
420         </plugins>
421     </build>
422
423     <profiles>
424         <profile>
425             <id>sonar-jacoco-aggregate</id>
426             <activation>
427                 <property>
428                     <name>onap.jacoco.aggregateFile</name>
429                 </property>
430             </activation>
431             <build>
432                 <plugins>
433                     <plugin>
434                         <groupId>org.jacoco</groupId>
435                         <artifactId>jacoco-maven-plugin</artifactId>
436                         <executions>
437                             <execution>
438                                 <id>merge</id>
439                                 <goals>
440                                     <goal>merge</goal>
441                                 </goals>
442                                 <phase>generate-resources</phase>
443                                 <configuration>
444                                     <destFile>${onap.jacoco.aggregateFile}</destFile>
445                                     <fileSets>
446                                         <fileSet>
447                                             <directory>${project.basedir}</directory>
448                                             <includes>
449                                                 <include>**/target/code-coverage/*.exec</include>
450                                             </includes>
451                                         </fileSet>
452                                     </fileSets>
453                                 </configuration>
454                             </execution>
455                         </executions>
456                     </plugin>
457                 </plugins>
458             </build>
459         </profile>
460     </profiles>
461 </project>