9
9
<version >0.0.1-SNAPSHOT</version >
10
10
</parent >
11
11
12
+ <groupId >ie.emeraldjava.debezium</groupId >
12
13
<artifactId >debezium</artifactId >
14
+ <packaging >jar</packaging >
13
15
14
16
<properties >
15
17
<maven .compiler.source>21</maven .compiler.source>
16
18
<maven .compiler.target>21</maven .compiler.target>
17
19
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
20
+ <spring-boot .version>2.7.18</spring-boot .version>
18
21
</properties >
19
22
23
+ <dependencies >
24
+ <dependency >
25
+ <groupId >org.springframework.boot</groupId >
26
+ <artifactId >spring-boot-starter-web</artifactId >
27
+ </dependency >
28
+ <dependency >
29
+ <groupId >org.springframework.boot</groupId >
30
+ <artifactId >spring-boot-starter-actuator</artifactId >
31
+ </dependency >
32
+ <dependency >
33
+ <groupId >org.springframework.boot</groupId >
34
+ <artifactId >spring-boot-configuration-processor</artifactId >
35
+ <optional >true</optional >
36
+ </dependency >
37
+ <dependency >
38
+ <groupId >org.springframework.boot</groupId >
39
+ <artifactId >spring-boot-starter-test</artifactId >
40
+ </dependency >
41
+ <dependency >
42
+ <groupId >org.springframework.boot</groupId >
43
+ <artifactId >spring-boot-devtools</artifactId >
44
+ <scope >runtime</scope >
45
+ <optional >true</optional >
46
+ </dependency >
47
+ <dependency >
48
+ <groupId >org.projectlombok</groupId >
49
+ <artifactId >lombok</artifactId >
50
+ <version >1.18.30</version >
51
+ <scope >provided</scope >
52
+ </dependency >
53
+ </dependencies >
54
+
55
+ <dependencyManagement >
56
+ <dependencies >
57
+ <dependency >
58
+ <groupId >org.junit</groupId >
59
+ <artifactId >junit-bom</artifactId >
60
+ <version >5.10.3</version >
61
+ <!-- <version>${junit-jupiter.version}</version>-->
62
+ <type >pom</type >
63
+ <scope >import</scope >
64
+ </dependency >
65
+ <dependency >
66
+ <groupId >org.springframework.boot</groupId >
67
+ <artifactId >spring-boot-dependencies</artifactId >
68
+ <version >${spring-boot.version} </version >
69
+ <type >pom</type >
70
+ <scope >import</scope >
71
+ </dependency >
72
+ </dependencies >
73
+ </dependencyManagement >
74
+
75
+ <build >
76
+ <plugins >
77
+ <plugin >
78
+ <groupId >org.springframework.boot</groupId >
79
+ <artifactId >spring-boot-maven-plugin</artifactId >
80
+ <executions >
81
+ <execution >
82
+ <goals >
83
+ <goal >build-info</goal >
84
+ <goal >repackage</goal >
85
+ </goals >
86
+ </execution >
87
+ </executions >
88
+ </plugin >
89
+ </plugins >
90
+ </build >
91
+
20
92
</project >
0 commit comments