[KAFKA] Add docker-compose to sample project
[dmaap/kafka11aaf.git] / pom.xml
1 <!--
2   ============LICENSE_START==================================================
3   * org.onap.dmaap.kafka
4   * ===========================================================================
5   * Copyright (C) 2023 Nordix Foundation. All rights reserved.
6   * ===========================================================================
7   * Licensed under the Apache License, Version 2.0 (the "License");
8   * you may not use this file except in compliance with the License.
9   * You may obtain a copy of the License at
10   *
11    *      http://www.apache.org/licenses/LICENSE-2.0
12   *
13    * Unless required by applicable law or agreed to in writing, software
14   * distributed under the License is distributed on an "AS IS" BASIS,
15   * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16   * See the License for the specific language governing permissions and
17   * limitations under the License.
18   * ============LICENSE_END====================================================
19 -->
20 <project xmlns="http://maven.apache.org/POM/4.0.0"
21   xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
22   xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
23   <modelVersion>4.0.0</modelVersion>
24
25   <groupId>org.onap.dmaap.kafka11aaf</groupId>
26   <artifactId>parent</artifactId>
27   <name>dmaap-kafka</name>
28   <version>${revision}</version>
29   <packaging>pom</packaging>
30
31   <parent>
32     <groupId>org.onap.oparent</groupId>
33     <artifactId>oparent</artifactId>
34     <version>3.3.2</version>
35   </parent>
36
37   <modules>
38     <module>kafkaClient</module>
39     <module>sampleClient</module>
40   </modules>
41
42   <properties>
43     <revision>0.0.1-SNAPSHOT</revision>
44     <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
45     <maven.build.timestamp.format>yyyyMMdd'T'HHmmss'Z'</maven.build.timestamp.format>
46     <sitePath>/content/sites/site/org/onap/dmaap/kafka/${project.artifactId}/${project.version}</sitePath>
47     <sonar.language>java</sonar.language>
48     <sonar.skip>false</sonar.skip>
49     <sonar.projectVersion>${project.version}</sonar.projectVersion>
50     <sonar.exclusions>**/gen/**,**/generated-sources/**,**/yang-gen**,**/pax/**</sonar.exclusions>
51     <kafka.version>3.3.1</kafka.version>
52   </properties>
53   <dependencyManagement>
54     <dependencies>
55       <dependency>
56         <groupId>org.projectlombok</groupId>
57         <artifactId>lombok</artifactId>
58         <version>1.18.24</version>
59       </dependency>
60     </dependencies>
61   </dependencyManagement>
62   <build>
63     <resources>
64     </resources>
65     <plugins>
66       <plugin>
67         <groupId>org.jacoco</groupId>
68         <artifactId>jacoco-maven-plugin</artifactId>
69       </plugin>
70       <plugin>
71         <groupId>org.apache.maven.plugins</groupId>
72         <artifactId>maven-surefire-plugin</artifactId>
73         <configuration>
74           <skipTests>false</skipTests>
75         </configuration>
76       </plugin>
77       <plugin>
78         <groupId>org.apache.maven.plugins</groupId>
79         <artifactId>maven-failsafe-plugin</artifactId>
80         <configuration>
81           <argLine>
82             --illegal-access=permit
83           </argLine>
84         </configuration>
85       </plugin>
86       <plugin>
87         <artifactId>maven-checkstyle-plugin</artifactId>
88         <executions>
89           <execution>
90             <id>onap-java-style</id>
91             <configuration>
92               <consoleOutput>false</consoleOutput>
93             </configuration>
94           </execution>
95         </executions>
96       </plugin>
97     </plugins>
98   </build>
99 </project>