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+
6+ <groupId >org.questdb</groupId >
7+ <modelVersion >4.0.0</modelVersion >
8+ <version >0.1-SNAPSHOT</version >
9+
10+ <artifactId >kafka-samples-stocks</artifactId >
11+
12+ <properties >
13+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
14+ <maven .compiler.source>8</maven .compiler.source>
15+ <maven .compiler.target>8</maven .compiler.target>
16+ <spring .boot.version>2.7.4</spring .boot.version>
17+ <testcontainers .version>1.17.3</testcontainers .version>
18+
19+ </properties >
20+
21+ <dependencyManagement >
22+ <dependencies >
23+ <dependency >
24+ <groupId >org.springframework.boot</groupId >
25+ <artifactId >spring-boot-dependencies</artifactId >
26+ <version >${spring.boot.version} </version >
27+ <type >pom</type >
28+ <scope >import</scope >
29+ </dependency >
30+ </dependencies >
31+ </dependencyManagement >
32+
33+
34+ <dependencies >
35+ <dependency >
36+ <groupId >org.springframework</groupId >
37+ <artifactId >spring-test</artifactId >
38+ <version >5.3.23</version >
39+ <scope >test</scope >
40+ </dependency >
41+ <dependency >
42+ <groupId >org.springframework.boot</groupId >
43+ <artifactId >spring-boot-starter-jdbc</artifactId >
44+ </dependency >
45+ <dependency >
46+ <groupId >org.springframework.data</groupId >
47+ <artifactId >spring-data-jdbc</artifactId >
48+ </dependency >
49+ <dependency >
50+ <groupId >org.springframework.boot</groupId >
51+ <artifactId >spring-boot-test</artifactId >
52+ <scope >test</scope >
53+ </dependency >
54+ <dependency >
55+ <groupId >org.postgresql</groupId >
56+ <artifactId >postgresql</artifactId >
57+ <version >42.5.0</version >
58+ </dependency >
59+ <dependency >
60+ <groupId >org.testcontainers</groupId >
61+ <artifactId >testcontainers</artifactId >
62+ <scope >test</scope >
63+ <version >${testcontainers.version} </version >
64+ </dependency >
65+ <dependency >
66+ <groupId >org.testcontainers</groupId >
67+ <artifactId >postgresql</artifactId >
68+ <scope >test</scope >
69+ <version >${testcontainers.version} </version >
70+ </dependency >
71+ <dependency >
72+ <groupId >org.testcontainers</groupId >
73+ <artifactId >junit-jupiter</artifactId >
74+ <scope >test</scope >
75+ <version >${testcontainers.version} </version >
76+ </dependency >
77+ </dependencies >
78+
79+ <build >
80+ <plugins >
81+ <plugin >
82+ <groupId >org.springframework.boot</groupId >
83+ <artifactId >spring-boot-maven-plugin</artifactId >
84+ <configuration >
85+ <mainClass >io.questdb.kafka.samples.StocksApp</mainClass >
86+ </configuration >
87+ <executions >
88+ <execution >
89+ <goals >
90+ <goal >repackage</goal >
91+ </goals >
92+ </execution >
93+ </executions >
94+ </plugin >
95+ </plugins >
96+ </build >
97+
98+ </project >
0 commit comments