<?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/xsd/maven-4.0.0.xsd">
	<modelVersion>4.0.0</modelVersion>
	<parent>
		<groupId>cn.com.tltim.pigx</groupId>
		<artifactId>pigx-common</artifactId>
		<version>5.0.0-20240820</version>
	</parent>

	<artifactId>pigx-common-sequence</artifactId>
	<packaging>jar</packaging>

	<description>pigx 分布式发号器</description>

	<dependencies>
		<dependency>
			<groupId>cn.com.tltim.pigx</groupId>
			<artifactId>pigx-common-core</artifactId>
		</dependency>
		<!-- redis 实现-->
		<dependency>
			<groupId>org.springframework.boot</groupId>
			<artifactId>spring-boot-starter-data-redis</artifactId>
		</dependency>
		<!--anyline-->
		<dependency>
			<groupId>org.anyline</groupId>
			<artifactId>anyline-environment-spring-data-jdbc</artifactId>
		</dependency>
		<dependency>
			<groupId>org.anyline</groupId>
			<artifactId>anyline-data-jdbc-mysql</artifactId>
		</dependency>
		<dependency>
			<groupId>org.anyline</groupId>
			<artifactId>anyline-data-jdbc-postgresql</artifactId>
		</dependency>
		<dependency>
			<groupId>org.anyline</groupId>
			<artifactId>anyline-data-jdbc-oracle</artifactId>
		</dependency>
		<dependency>
			<groupId>com.mysql</groupId>
			<artifactId>mysql-connector-j</artifactId>
		</dependency>
		<!-- postgresql 驱动 -->
		<dependency>
			<groupId>org.postgresql</groupId>
			<artifactId>postgresql</artifactId>
		</dependency>
		<!-- oracle 驱动 -->
		<dependency>
			<groupId>com.oracle.database.jdbc</groupId>
			<artifactId>ojdbc8</artifactId>
		</dependency>
		<!-- sqlserver 驱动 -->
		<dependency>
			<groupId>com.microsoft.sqlserver</groupId>
			<artifactId>mssql-jdbc</artifactId>
		</dependency>
		<!-- db2 驱动-->
		<dependency>
			<groupId>com.ibm.db2</groupId>
			<artifactId>jcc</artifactId>
		</dependency>
		<!-- 瀚高 -->
		<dependency>
			<groupId>com.highgo</groupId>
			<artifactId>HgdbJdbc</artifactId>
		</dependency>
		<!--DM-->
		<dependency>
			<groupId>com.dameng</groupId>
			<artifactId>DmJdbcDriver18</artifactId>
		</dependency>
	</dependencies>
</project>
