Skip to content

Commit 300306f

Browse files
Add files via upload
1 parent 7a3a2ec commit 300306f

File tree

1 file changed

+47
-0
lines changed
  • data-platform/autonomous-database/autonomous-json/MongoDBReplay

1 file changed

+47
-0
lines changed
Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,47 @@
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+
<modelVersion>4.0.0</modelVersion>
6+
7+
<groupId>utils.dbutils</groupId>
8+
<artifactId>MongoDBReplay</artifactId>
9+
<version>1.0-SNAPSHOT</version>
10+
11+
<properties>
12+
<maven.compiler.source>21</maven.compiler.source>
13+
<maven.compiler.target>21</maven.compiler.target>
14+
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
15+
</properties>
16+
<dependencies>
17+
<dependency>
18+
<groupId>com.google.code.gson</groupId>
19+
<artifactId>gson</artifactId>
20+
<version>2.13.1</version>
21+
</dependency>
22+
<dependency>
23+
<groupId>org.mongodb</groupId>
24+
<artifactId>mongodb-driver-sync</artifactId>
25+
<version>5.5.0</version>
26+
</dependency>
27+
<!-- https://mvnrepository.com/artifact/org.json/json -->
28+
<dependency>
29+
<groupId>org.json</groupId>
30+
<artifactId>json</artifactId>
31+
<version>20250517</version>
32+
</dependency>
33+
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-api -->
34+
<dependency>
35+
<groupId>org.slf4j</groupId>
36+
<artifactId>slf4j-api</artifactId>
37+
<version>2.0.17</version>
38+
</dependency>
39+
<!-- https://mvnrepository.com/artifact/org.slf4j/slf4j-simple -->
40+
<dependency>
41+
<groupId>org.slf4j</groupId>
42+
<artifactId>slf4j-simple</artifactId>
43+
<version>2.0.17</version>
44+
<scope>test</scope>
45+
</dependency>
46+
</dependencies>
47+
</project>

0 commit comments

Comments
 (0)