2021-01-20 17:10:45 +08:00
|
|
|
|
<?xml version='1.0' encoding='utf-8'?>
|
2023-03-27 03:28:19 +08:00
|
|
|
|
<!--
|
2025-01-01 23:44:09 +08:00
|
|
|
|
~ Copyright (c) 2013-2025 Hutool Team and hutool.cn
|
2024-09-06 00:06:14 +08:00
|
|
|
|
~
|
|
|
|
|
~ Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
|
~ you may not use this file except in compliance with the License.
|
|
|
|
|
~ You may obtain a copy of the License at
|
|
|
|
|
~
|
|
|
|
|
~ http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
~
|
|
|
|
|
~ Unless required by applicable law or agreed to in writing, software
|
|
|
|
|
~ distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
|
~ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
|
~ See the License for the specific language governing permissions and
|
|
|
|
|
~ limitations under the License.
|
2023-03-27 03:28:19 +08:00
|
|
|
|
-->
|
|
|
|
|
|
2021-01-20 17:10:45 +08:00
|
|
|
|
<project xmlns="http://maven.apache.org/POM/4.0.0"
|
2021-07-12 20:22:30 +08:00
|
|
|
|
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">
|
2021-01-20 17:10:45 +08:00
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
|
|
|
|
|
|
<parent>
|
2023-04-03 02:32:22 +08:00
|
|
|
|
<groupId>org.dromara.hutool</groupId>
|
2021-01-20 17:10:45 +08:00
|
|
|
|
<artifactId>hutool-parent</artifactId>
|
2024-12-25 19:08:25 +08:00
|
|
|
|
<version>6.0.0-M20</version>
|
2021-01-20 17:10:45 +08:00
|
|
|
|
</parent>
|
|
|
|
|
|
|
|
|
|
<artifactId>hutool-db</artifactId>
|
|
|
|
|
<name>${project.artifactId}</name>
|
|
|
|
|
<description>Hutool 数据库JDBC的ORM封装</description>
|
|
|
|
|
|
|
|
|
|
<properties>
|
2023-04-03 02:32:22 +08:00
|
|
|
|
<Automatic-Module-Name>org.dromara.hutool.db</Automatic-Module-Name>
|
2021-01-20 17:10:45 +08:00
|
|
|
|
<!-- versions -->
|
2024-11-17 00:39:42 +08:00
|
|
|
|
<c3p0.version>0.10.1</c3p0.version>
|
|
|
|
|
<dbcp2.version>2.12.0</dbcp2.version>
|
2022-11-29 21:50:51 +08:00
|
|
|
|
<!-- 固定10.0.x -->
|
|
|
|
|
<tomcat-jdbc.version>10.0.27</tomcat-jdbc.version>
|
2024-11-17 00:39:42 +08:00
|
|
|
|
<druid.version>1.2.23</druid.version>
|
2022-11-29 21:50:51 +08:00
|
|
|
|
<!-- 固定4.x -->
|
2022-05-26 12:03:20 +08:00
|
|
|
|
<hikariCP.version>4.0.3</hikariCP.version>
|
2024-07-13 18:46:26 +08:00
|
|
|
|
<sqlite.version>3.46.0.0</sqlite.version>
|
2021-08-07 23:38:23 +08:00
|
|
|
|
<!-- 此处固定2.5.x,支持到JDK8 -->
|
|
|
|
|
<hsqldb.version>2.5.2</hsqldb.version>
|
2021-01-20 17:10:45 +08:00
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
|
<dependency>
|
2023-04-03 02:32:22 +08:00
|
|
|
|
<groupId>org.dromara.hutool</groupId>
|
2021-01-20 17:10:45 +08:00
|
|
|
|
<artifactId>hutool-core</artifactId>
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2023-04-03 02:32:22 +08:00
|
|
|
|
<groupId>org.dromara.hutool</groupId>
|
2021-01-20 17:10:45 +08:00
|
|
|
|
<artifactId>hutool-setting</artifactId>
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2023-04-03 02:32:22 +08:00
|
|
|
|
<groupId>org.dromara.hutool</groupId>
|
2021-01-20 17:10:45 +08:00
|
|
|
|
<artifactId>hutool-log</artifactId>
|
|
|
|
|
<version>${project.parent.version}</version>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 数据库连接池 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.tomcat</groupId>
|
|
|
|
|
<artifactId>tomcat-jdbc</artifactId>
|
|
|
|
|
<version>${tomcat-jdbc.version}</version>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.alibaba</groupId>
|
|
|
|
|
<artifactId>druid</artifactId>
|
|
|
|
|
<version>${druid.version}</version>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.zaxxer</groupId>
|
2022-05-26 12:03:20 +08:00
|
|
|
|
<artifactId>HikariCP</artifactId>
|
2021-01-20 17:10:45 +08:00
|
|
|
|
<version>${hikariCP.version}</version>
|
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.mchange</groupId>
|
|
|
|
|
<artifactId>c3p0</artifactId>
|
|
|
|
|
<version>${c3p0.version}</version>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.github.chris2018998</groupId>
|
2021-03-28 12:31:44 +08:00
|
|
|
|
<artifactId>beecp</artifactId>
|
2024-11-17 00:09:08 +08:00
|
|
|
|
<version>4.1.3</version>
|
2021-01-20 17:10:45 +08:00
|
|
|
|
<exclusions>
|
|
|
|
|
<exclusion>
|
|
|
|
|
<artifactId>slf4j-api</artifactId>
|
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
</exclusion>
|
|
|
|
|
</exclusions>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
|
<artifactId>commons-dbcp2</artifactId>
|
|
|
|
|
<version>${dbcp2.version}</version>
|
|
|
|
|
<optional>true</optional>
|
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
|
|
<!-- 测试用依赖 -->
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.xerial</groupId>
|
|
|
|
|
<artifactId>sqlite-jdbc</artifactId>
|
|
|
|
|
<version>${sqlite.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>org.hsqldb</groupId>
|
|
|
|
|
<artifactId>hsqldb</artifactId>
|
|
|
|
|
<version>${hsqldb.version}</version>
|
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
2023-05-07 23:10:54 +08:00
|
|
|
|
<groupId>com.mysql</groupId>
|
|
|
|
|
<artifactId>mysql-connector-j</artifactId>
|
2024-11-17 00:39:42 +08:00
|
|
|
|
<version>9.1.0</version>
|
2021-01-20 17:10:45 +08:00
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.h2database</groupId>
|
|
|
|
|
<artifactId>h2</artifactId>
|
2024-11-17 00:39:42 +08:00
|
|
|
|
<!-- 此处固定2.2.x,支持到JDK8 -->
|
|
|
|
|
<version>2.2.222</version>
|
2021-01-20 17:10:45 +08:00
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2024-02-22 12:03:59 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.dameng</groupId>
|
|
|
|
|
<artifactId>DmJdbcDriver18</artifactId>
|
2024-04-29 14:32:30 +08:00
|
|
|
|
<version>8.1.3.140</version>
|
2024-02-22 12:03:59 +08:00
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2021-09-18 00:30:31 +08:00
|
|
|
|
<dependency>
|
2023-10-23 22:36:44 +08:00
|
|
|
|
<groupId>org.slf4j</groupId>
|
|
|
|
|
<artifactId>slf4j-simple</artifactId>
|
|
|
|
|
<version>2.0.9</version>
|
2021-09-18 00:30:31 +08:00
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2024-03-28 16:08:17 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.oracle.database.jdbc</groupId>
|
|
|
|
|
<artifactId>ojdbc8</artifactId>
|
2024-11-17 00:39:42 +08:00
|
|
|
|
<version>23.6.0.24.10</version>
|
2024-03-28 16:08:17 +08:00
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2024-05-06 15:52:18 +08:00
|
|
|
|
<dependency>
|
|
|
|
|
<groupId>com.oceanbase</groupId>
|
|
|
|
|
<artifactId>oceanbase-client</artifactId>
|
2024-11-17 00:39:42 +08:00
|
|
|
|
<version>2.4.12</version>
|
2024-05-06 15:52:18 +08:00
|
|
|
|
<scope>test</scope>
|
|
|
|
|
</dependency>
|
2021-01-20 17:10:45 +08:00
|
|
|
|
</dependencies>
|
|
|
|
|
</project>
|