<?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.net.yunlou</groupId>
        <artifactId>commons</artifactId>
        <version>1.0.0</version>
    </parent>

    <artifactId>common-data-postgresql</artifactId>
    <version>${parent.version}</version>
    <name>Yunlou Commons PostgreSQL Data Module</name>
    <description>PostgreSQL-specific data access module providing JSONB type handlers, PostgreSQL-specific utilities and database operations for the Yunlou Commons Framework.</description>
    <url>https://github.com/yunlou-net-cn/common-data-postgresql</url>

    <!-- 许可证信息 -->
    <licenses>
        <license>
            <name>The Apache License, Version 2.0</name>
            <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>

    <!-- 开发者信息（必须，至少一位） -->
    <developers>
        <developer>
            <name>javaeer</name>
            <email>admin@yunlou.net.cn</email>
            <!-- 可选信息 -->
            <organization>云楼网络</organization>
            <organizationUrl>https://yunlou.net.cn</organizationUrl>
        </developer>
    </developers>

    <!-- 源码仓库信息（必须） -->
    <scm>
        <connection>scm:git:git://github.com/yunlou-net-cn/common-data-postgresql.git</connection>
        <developerConnection>scm:git:ssh://github.com/yunlou-net-cn/common-data-postgresql.git</developerConnection>
        <url>https://github.com/yunlou-net-cn/common-data-postgresql/tree/main</url>
        <!-- 如果有指定分支，可添加 <tag>HEAD</tag> -->
    </scm>

    <dependencies>
        <dependency>
            <groupId>cn.net.yunlou</groupId>
            <artifactId>common-data-core</artifactId>
        </dependency>

        <dependency>
            <groupId>org.postgresql</groupId>
            <artifactId>postgresql</artifactId>
            <version>${postgresql.version}</version>
        </dependency>
    </dependencies>

</project>