-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpom.xml
98 lines (87 loc) · 3.41 KB
/
pom.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.scireum</groupId>
<artifactId>sirius-parent</artifactId>
<version>13.1.0</version>
</parent>
<artifactId>sirius-db</artifactId>
<version>DEVELOPMENT-SNAPSHOT</version>
<packaging>jar</packaging>
<name>SIRIUS db</name>
<description>
Provides a modern and highly flexible ORM and lightweight connectivity for JDBC, MongoDB, Redis, Elasticsearch.
</description>
<url>http://www.sirius-lib.net</url>
<properties>
<sirius.kernel>dev-44.4.0</sirius.kernel>
</properties>
<repositories>
<repository>
<id>scireum-mvn</id>
<url>https://mvn.scireum.com</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>com.scireum</groupId>
<artifactId>sirius-kernel</artifactId>
<version>${sirius.kernel}</version>
</dependency>
<dependency>
<groupId>com.scireum</groupId>
<artifactId>sirius-kernel</artifactId>
<version>${sirius.kernel}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<!-- Changelog: /~https://github.com/apache/commons-dbcp/blob/master/RELEASE-NOTES.txt -->
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-dbcp2</artifactId>
<version>2.13.0</version>
</dependency>
<!-- Changelog: /~https://github.com/mongodb/mongo-java-driver/releases -->
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongodb-driver-sync</artifactId>
<version>4.11.1</version>
</dependency>
<!-- Changelog: /~https://github.com/redis/jedis/releases -->
<dependency>
<groupId>redis.clients</groupId>
<artifactId>jedis</artifactId>
<version>5.2.0</version>
<exclusions>
<exclusion>
<groupId>org.json</groupId>
<artifactId>json</artifactId>
</exclusion>
</exclusions>
</dependency>
<!-- Changelog: https://www.elastic.co/guide/en/elasticsearch/client/java-api-client/current/release-highlights.html -->
<dependency>
<groupId>org.elasticsearch.client</groupId>
<artifactId>elasticsearch-rest-client</artifactId>
<version>8.17.1</version>
</dependency>
<!-- Changelog: /~https://github.com/mariadb-corporation/mariadb-connector-j/releases -->
<dependency>
<groupId>org.mariadb.jdbc</groupId>
<artifactId>mariadb-java-client</artifactId>
<version>3.5.2</version>
<scope>test</scope>
</dependency>
<!-- Changelog: /~https://github.com/ClickHouse/clickhouse-java/releases -->
<dependency>
<groupId>com.clickhouse</groupId>
<artifactId>clickhouse-jdbc</artifactId>
<version>0.6.5</version>
<classifier>http</classifier>
<scope>test</scope>
</dependency>
</dependencies>
</project>