9fa48b3159f237add0cc8fa0ed9d0766679d2682
[dmaap/kafka11aaf.git] / kafkaClient / 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/xsd/maven-4.0.0.xsd">
5   <modelVersion>4.0.0</modelVersion>
6
7   <parent>
8     <groupId>org.onap.dmaap.kafka</groupId>
9     <artifactId>parent</artifactId>
10     <version>${revision}</version>
11     <relativePath>../pom.xml</relativePath>
12   </parent>
13   <artifactId>onap-kafka-client</artifactId>
14   <description>Kafka client JAR file to use by kafka clients</description>
15   <packaging>jar</packaging>
16
17   <properties>
18     <maven.compiler.source>11</maven.compiler.source>
19     <maven.compiler.target>11</maven.compiler.target>
20     <kafka.version>3.3.1</kafka.version>
21   </properties>
22   <dependencies>
23     <dependency>
24       <groupId>org.apache.kafka</groupId>
25       <artifactId>kafka_2.13</artifactId>
26       <version>${kafka.version}</version>
27     </dependency>
28     <dependency>
29       <groupId>org.apache.kafka</groupId>
30       <artifactId>kafka-clients</artifactId>
31       <version>${kafka.version}</version>
32     </dependency>
33     <dependency>
34       <groupId>org.projectlombok</groupId>
35       <artifactId>lombok</artifactId>
36       <scope>test</scope>
37     </dependency>
38     <dependency>
39       <groupId>ch.qos.logback</groupId>
40       <artifactId>logback-classic</artifactId>
41       <version>1.4.5</version>
42       <exclusions>
43         <exclusion>
44           <groupId>org.slf4j</groupId>
45           <artifactId>slf4j-log4j12</artifactId>
46         </exclusion>
47       </exclusions>
48     </dependency>
49     <dependency>
50       <groupId>ch.qos.logback</groupId>
51       <artifactId>logback-core</artifactId>
52       <version>1.4.5</version>
53     </dependency>
54     <dependency>
55       <groupId>org.slf4j</groupId>
56       <artifactId>slf4j-api</artifactId>
57       <version>2.0.4</version>
58     </dependency>
59     <dependency>
60       <groupId>com.salesforce.kafka.test</groupId>
61       <artifactId>kafka-junit5</artifactId>
62       <version>3.2.4</version>
63       <exclusions>
64         <exclusion>
65           <groupId>org.apache.kafka</groupId>
66           <artifactId>kafka-streams</artifactId>
67         </exclusion>
68       </exclusions>
69       <scope>test</scope>
70     </dependency>
71     <dependency>
72       <groupId>org.junit-pioneer</groupId>
73       <artifactId>junit-pioneer</artifactId>
74       <version>1.9.1</version>
75       <scope>test</scope>
76     </dependency>
77     <dependency>
78       <groupId>io.github.netmikey.logunit</groupId>
79       <artifactId>logunit-core</artifactId>
80       <version>1.1.3</version>
81       <scope>compile</scope>
82     </dependency>
83     <dependency>
84       <groupId>io.github.netmikey.logunit</groupId>
85       <artifactId>logunit-logback</artifactId>
86       <version>1.1.3</version>
87       <scope>compile</scope>
88     </dependency>
89   </dependencies>
90 </project>