<?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>

    <groupId>com.huaweicloud.gaussdb</groupId>
    <artifactId>opengaussjdbc</artifactId>
    <version>503.2.T35</version>

    <name>GaussDB JDBC Driver</name>
    <url>https://www.huaweicloud.com/product/gaussdb.html</url>
    <description>HuaweiCloud JDBC for GaussDB</description>


    <licenses>
        <license>
            <name>Huawei Cloud</name>
            <url>https://www.huaweicloud.com/</url>
        </license>
    </licenses>

    <developers>
        <developer>
            <name>gaussdb</name>
        </developer>
    </developers>


    <scm>
        <connection>
            https://www.huaweicloud.com/product/gaussdb.html
        </connection>
        <developerConnection>
            https://www.huaweicloud.com/product/gaussdb.html
        </developerConnection>
        <url>https://www.huaweicloud.com/product/gaussdb.html</url>
    </scm>

    <distributionManagement>
        <snapshotRepository>
            <id>opengaussjdbc</id>
            <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
        </snapshotRepository>
        <repository>
            <id>opengaussjdbc</id>
            <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
        </repository>
    </distributionManagement>

    <profiles>
        <profile>
            <id>opengaussjdbc</id>
            <build>
                <plugins>
                    <!-- Source -->
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-source-plugin</artifactId>
                        <version>2.2.1</version>
                        <executions>
                            <execution>
                                <phase>package</phase>
                                <goals>
                                    <goal>jar-no-fork</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                    <!-- GPG -->
                    <plugin>
                        <groupId>org.apache.maven.plugins</groupId>
                        <artifactId>maven-gpg-plugin</artifactId>
                        <version>1.5</version>
                        <executions>
                            <execution>
                                <phase>verify</phase>
                                <goals>
                                    <goal>sign</goal>
                                </goals>
                            </execution>
                        </executions>
                    </plugin>
                </plugins>
            </build>
        </profile>
    </profiles>
</project>