|
| 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" |
| 3 | + xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"> |
| 4 | + <modelVersion>4.0.0</modelVersion> |
| 5 | + |
| 6 | + <groupId>com.example</groupId> |
| 7 | + <artifactId>kafka-sample-06</artifactId> |
| 8 | + <version>3.2.0-SNAPSHOT</version> |
| 9 | + <packaging>jar</packaging> |
| 10 | + |
| 11 | + <name>kafka-sample-06</name> |
| 12 | + <description>Kafka Sample 6</description> |
| 13 | + <parent> |
| 14 | + <groupId>org.springframework.boot</groupId> |
| 15 | + <artifactId>spring-boot-starter-parent</artifactId> |
| 16 | + <version>3.2.5</version> |
| 17 | + <relativePath/> <!-- lookup parent from repository --> |
| 18 | + </parent> |
| 19 | + |
| 20 | + <properties> |
| 21 | + <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> |
| 22 | + <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> |
| 23 | + <java.version>17</java.version> |
| 24 | + </properties> |
| 25 | + |
| 26 | + <dependencies> |
| 27 | + |
| 28 | + <dependency> |
| 29 | + <groupId>org.springframework.kafka</groupId> |
| 30 | + <artifactId>spring-kafka</artifactId> |
| 31 | + </dependency> |
| 32 | + |
| 33 | + <dependency> |
| 34 | + <groupId>org.apache.kafka</groupId> |
| 35 | + <artifactId>kafka-streams</artifactId> |
| 36 | + </dependency> |
| 37 | + |
| 38 | + <dependency> |
| 39 | + <groupId>org.springframework.boot</groupId> |
| 40 | + <artifactId>spring-boot-starter-test</artifactId> |
| 41 | + <scope>test</scope> |
| 42 | + </dependency> |
| 43 | + |
| 44 | + <dependency> |
| 45 | + <groupId>org.springframework.boot</groupId> |
| 46 | + <artifactId>spring-boot-starter-web</artifactId> |
| 47 | + </dependency> |
| 48 | + |
| 49 | + <dependency> |
| 50 | + <groupId>org.apache.kafka</groupId> |
| 51 | + <artifactId>kafka-streams-test-utils</artifactId> |
| 52 | + <scope>test</scope> |
| 53 | + </dependency> |
| 54 | + |
| 55 | + <dependency> |
| 56 | + <groupId>org.apache.kafka</groupId> |
| 57 | + <artifactId>kafka-clients</artifactId> |
| 58 | + <scope>test</scope> |
| 59 | + <classifier>test</classifier> |
| 60 | + </dependency> |
| 61 | + |
| 62 | + <dependency> |
| 63 | + <groupId>org.awaitility</groupId> |
| 64 | + <artifactId>awaitility</artifactId> |
| 65 | + <scope>test</scope> |
| 66 | + </dependency> |
| 67 | + </dependencies> |
| 68 | + |
| 69 | + <build> |
| 70 | + <plugins> |
| 71 | + <plugin> |
| 72 | + <groupId>org.springframework.boot</groupId> |
| 73 | + <artifactId>spring-boot-maven-plugin</artifactId> |
| 74 | + </plugin> |
| 75 | + </plugins> |
| 76 | + </build> |
| 77 | + |
| 78 | + <repositories> |
| 79 | + <repository> |
| 80 | + <id>spring-snapshots</id> |
| 81 | + <name>Spring Snapshots</name> |
| 82 | + <url>https://repo.spring.io/libs-snapshot-local</url> |
| 83 | + </repository> |
| 84 | + <repository> |
| 85 | + <id>spring-milestones</id> |
| 86 | + <name>Spring milestones</name> |
| 87 | + <url>https://repo.spring.io/libs-milestone-local</url> |
| 88 | + </repository> |
| 89 | + <repository> |
| 90 | + <id>rsocket-snapshots</id> |
| 91 | + <name>RSocket Snapshots</name> |
| 92 | + <url>https://oss.jfrog.org/oss-snapshot-local</url> |
| 93 | + <snapshots> |
| 94 | + <enabled>true</enabled> |
| 95 | + </snapshots> |
| 96 | + </repository> |
| 97 | + <repository> |
| 98 | + <id>spring-releases</id> |
| 99 | + <name>Spring Releases</name> |
| 100 | + <url>https://repo.spring.io/release</url> |
| 101 | + </repository> |
| 102 | + </repositories> |
| 103 | + <pluginRepositories> |
| 104 | + <pluginRepository> |
| 105 | + <id>spring-snapshots</id> |
| 106 | + <name>Spring Snapshots</name> |
| 107 | + <url>https://repo.spring.io/snapshot</url> |
| 108 | + <snapshots> |
| 109 | + <enabled>true</enabled> |
| 110 | + </snapshots> |
| 111 | + </pluginRepository> |
| 112 | + <pluginRepository> |
| 113 | + <id>spring-milestones</id> |
| 114 | + <name>Spring Milestones</name> |
| 115 | + <url>https://repo.spring.io/milestone</url> |
| 116 | + <snapshots> |
| 117 | + <enabled>false</enabled> |
| 118 | + </snapshots> |
| 119 | + </pluginRepository> |
| 120 | + <pluginRepository> |
| 121 | + <id>spring-releases</id> |
| 122 | + <name>Spring Releases</name> |
| 123 | + <url>https://repo.spring.io/release</url> |
| 124 | + </pluginRepository> |
| 125 | + </pluginRepositories> |
| 126 | + |
| 127 | + |
| 128 | +</project> |
0 commit comments