gtsoft-snail-job-server/easy-retry-datasource/pom.xml
dhb52 ec260f1900 feat(3.2.0) Oracle数据库支持
* fix: 修改Dashboard的统计脚本
* doc: Oracle docker-compose 添加用户信息注释
* refactor: Oracle DDL 不在默认添加表名前缀
* fix: CLOB字段对标mysql版本的text/longtext
* fix: Oracle 批量插入为`INSERT ALL`
* style: 格式化SQL脚本
* fix: UPDATE select子查询需要MERGE INTO实现
* wip: 时间戳默认值SYSDATE => CURRENT_TIMESTAMP
* wip: *message,*info CLOB DEFAULT ''; args_str,ext_attrs,ext_attrs VARC…
* feat: 增加测试数据库的默认数据源配置
* feat: Oracle数据库支持
* feat: docker compose快速构建测试数据库
* feat: 新增Oracle SQL
2024-04-07 21:34:35 +08:00

32 lines
1.1 KiB
XML

<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<parent>
<groupId>com.aizuda</groupId>
<artifactId>easy-retry</artifactId>
<version>${revision}</version>
<relativePath>../pom.xml</relativePath>
</parent>
<artifactId>easy-retry-datasource</artifactId>
<name>easy-retry-datasource</name>
<description>easy-retry-datasource</description>
<packaging>pom</packaging>
<properties>
<java.version>17</java.version>
<maven.compiler.source>17</maven.compiler.source>
<maven.compiler.target>17</maven.compiler.target>
</properties>
<modules>
<module>easy-retry-mariadb-datasource</module>
<module>easy-retry-mysql-datasource</module>
<module>easy-retry-postgres-datasource</module>
<module>easy-retry-oracle-datasource</module>
<module>easy-retry-datasource-template</module>
</modules>
</project>