1
+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2
+
3
+ <project xmlns =" http://maven.apache.org/POM/4.0.0"
4
+ xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance"
5
+ xsi : schemaLocation =" http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" >
6
+ <modelVersion >4.0.0</modelVersion >
7
+
8
+ <groupId >com.google.cloud.jdbc.quickperf</groupId >
9
+ <artifactId >jdbc-quickperf</artifactId >
10
+ <version >1.0.0</version >
11
+ <name >jdbc-quickperf</name >
12
+ <parent >
13
+ <groupId >com.google.cloud</groupId >
14
+ <artifactId >sdk-platform-java-config</artifactId >
15
+ <version >3.34.0</version >
16
+ <relativePath />
17
+ </parent >
18
+
19
+ <properties >
20
+ <project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
21
+ <maven .compiler.source>1.8</maven .compiler.source>
22
+ <maven .compiler.target>1.8</maven .compiler.target>
23
+ </properties >
24
+
25
+ <dependencyManagement >
26
+ <dependencies >
27
+ <dependency >
28
+ <groupId >com.google.cloud</groupId >
29
+ <artifactId >libraries-bom</artifactId >
30
+ <version >26.43.0</version >
31
+ <type >pom</type >
32
+ <scope >import</scope >
33
+ </dependency >
34
+ </dependencies >
35
+ </dependencyManagement >
36
+
37
+ <dependencies >
38
+ <dependency >
39
+ <groupId >net.datafaker</groupId >
40
+ <artifactId >datafaker</artifactId >
41
+ <version >2.3.1</version >
42
+ </dependency >
43
+ <dependency >
44
+ <groupId >com.google.cloud</groupId >
45
+ <artifactId >google-cloud-spanner</artifactId >
46
+ </dependency >
47
+ <dependency >
48
+ <groupId >commons-cli</groupId >
49
+ <artifactId >commons-cli</artifactId >
50
+ <version >1.5.0</version >
51
+ </dependency >
52
+ <dependency >
53
+ <groupId >com.google.cloud</groupId >
54
+ <artifactId >google-cloud-spanner-jdbc</artifactId >
55
+ </dependency >
56
+ <dependency >
57
+ <groupId >org.apache.commons</groupId >
58
+ <artifactId >commons-lang3</artifactId >
59
+ <version >3.13.0</version >
60
+ </dependency >
61
+ <dependency >
62
+ <groupId >com.fasterxml.jackson.core</groupId >
63
+ <artifactId >jackson-databind</artifactId >
64
+ <version >2.13.4.1</version >
65
+ </dependency >
66
+ <!-- Required for unit tests -->
67
+ <dependency >
68
+ <groupId >org.testcontainers</groupId >
69
+ <artifactId >testcontainers</artifactId >
70
+ <version >1.20.1</version >
71
+ <scope >test</scope >
72
+ </dependency >
73
+ <dependency >
74
+ <groupId >org.springframework.boot</groupId >
75
+ <artifactId >spring-boot</artifactId >
76
+ <version >3.2.5</version >
77
+ <scope >test</scope >
78
+ </dependency >
79
+ <dependency >
80
+ <groupId >junit</groupId >
81
+ <artifactId >junit</artifactId >
82
+ <version >4.13.1</version >
83
+ <scope >test</scope >
84
+ </dependency >
85
+ </dependencies >
86
+
87
+ <build >
88
+ <plugins >
89
+ <plugin >
90
+ <groupId >org.codehaus.mojo</groupId >
91
+ <artifactId >exec-maven-plugin</artifactId >
92
+ <version >3.1.0</version >
93
+ <configuration >
94
+ <mainClass >com.google.cloud.jdbc.quickperf.QuickPerf</mainClass >
95
+ </configuration >
96
+ </plugin >
97
+ </plugins >
98
+ </build >
99
+
100
+ </project >
0 commit comments