|
6 | 6 | <parent> |
7 | 7 | <groupId>org.springframework.boot</groupId> |
8 | 8 | <artifactId>spring-boot-starter-parent</artifactId> |
9 | | - <version>3.5.0</version> |
| 9 | + <version>4.0.0</version> |
10 | 10 | <relativePath /> <!-- lookup parent from repository --> |
11 | 11 | </parent> |
12 | 12 | <groupId>de.xxx</groupId> |
|
15 | 15 | <name>DatabaseToRest</name> |
16 | 16 | <description>Pipeline from Db to Rest Endpoint</description> |
17 | 17 | <properties> |
18 | | - <java.version>21</java.version> |
| 18 | + <java.version>24</java.version> |
19 | 19 | <debezium.version>3.0.5.Final</debezium.version> |
20 | 20 | </properties> |
21 | 21 | <dependencies> |
22 | | - <dependency> |
23 | | - <groupId>org.springframework.boot</groupId> |
24 | | - <artifactId>spring-boot-starter-actuator</artifactId> |
25 | | - </dependency> |
26 | | - <dependency> |
27 | | - <groupId>org.springframework.boot</groupId> |
28 | | - <artifactId>spring-boot-starter-web</artifactId> |
29 | | - </dependency> |
30 | | - <dependency> |
31 | | - <groupId>org.springframework.kafka</groupId> |
32 | | - <artifactId>spring-kafka</artifactId> |
33 | | - </dependency> |
34 | 22 | <dependency> |
35 | 23 | <groupId>io.debezium</groupId> |
36 | 24 | <artifactId>debezium-api</artifactId> |
|
46 | 34 | <artifactId>debezium-connector-postgres</artifactId> |
47 | 35 | <version>${debezium.version}</version> |
48 | 36 | </dependency> |
49 | | - <dependency> |
50 | | - <groupId>com.fasterxml.jackson.datatype</groupId> |
51 | | - <artifactId>jackson-datatype-jsr310</artifactId> |
52 | | - </dependency> |
53 | | - <dependency> |
54 | | - <groupId>org.springframework.boot</groupId> |
55 | | - <artifactId>spring-boot-starter-test</artifactId> |
56 | | - <scope>test</scope> |
57 | | - </dependency> |
| 37 | + <dependency> |
| 38 | + <groupId>org.springframework.boot</groupId> |
| 39 | + <artifactId>spring-boot-starter-actuator</artifactId> |
| 40 | + </dependency> |
| 41 | + <dependency> |
| 42 | + <groupId>org.springframework.boot</groupId> |
| 43 | + <artifactId>spring-boot-starter-kafka</artifactId> |
| 44 | + </dependency> |
| 45 | + <dependency> |
| 46 | + <groupId>org.springframework.boot</groupId> |
| 47 | + <artifactId>spring-boot-starter-webmvc</artifactId> |
| 48 | + </dependency> |
| 49 | + |
| 50 | + <dependency> |
| 51 | + <groupId>org.springframework.boot</groupId> |
| 52 | + <artifactId>spring-boot-starter-actuator-test</artifactId> |
| 53 | + <scope>test</scope> |
| 54 | + </dependency> |
| 55 | + <dependency> |
| 56 | + <groupId>org.springframework.boot</groupId> |
| 57 | + <artifactId>spring-boot-starter-kafka-test</artifactId> |
| 58 | + <scope>test</scope> |
| 59 | + </dependency> |
| 60 | + <dependency> |
| 61 | + <groupId>org.springframework.boot</groupId> |
| 62 | + <artifactId>spring-boot-starter-webmvc-test</artifactId> |
| 63 | + <scope>test</scope> |
| 64 | + </dependency> |
| 65 | + <!-- |
| 66 | + <dependency> |
| 67 | + <groupId>org.springframework.kafka</groupId> |
| 68 | + <artifactId>spring-kafka</artifactId> |
| 69 | + </dependency> |
58 | 70 | <dependency> |
59 | 71 | <groupId>org.springframework.kafka</groupId> |
60 | 72 | <artifactId>spring-kafka-test</artifactId> |
61 | 73 | <scope>test</scope> |
62 | 74 | </dependency> |
| 75 | + --> |
63 | 76 | </dependencies> |
64 | 77 |
|
65 | 78 | <build> |
|
0 commit comments