<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>org.mydotey.codec</groupId>
    <artifactId>codec-util-bom</artifactId>
    <version>1.1.0</version>
    <packaging>pom</packaging>
    <name>codec-util-bom</name>
    <description>codec-util bom</description>
    <url>https://github.com/mydotey/codec-util-bom</url>

    <licenses>
        <license>
            <name>Apache License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0</url>
        </license>
    </licenses>

    <organization>
        <name>mydotey.org</name>
    </organization>

    <developers>
        <developer>
            <id>koqizhao</id>
            <name>Qiang Zhao</name>
            <email>koqizhao@outlook.com</email>
            <roles>
                <role>Developer</role>
            </roles>
        </developer>
    </developers>

    <scm>
        <url>https://github.com/mydotey/codec-util-bom</url>
        <connection>git@github.com:mydotey/codec-util-bom.git</connection>
    </scm>  

    <dependencyManagement>
        <dependencies>
            <dependency>
                <groupId>org.mydotey.codec</groupId>
                <artifactId>codec-util</artifactId>
                <version>1.1.0</version>
            </dependency>
            <dependency>
                <groupId>org.mydotey.codec</groupId>
                <artifactId>jackson-codec-util</artifactId>
                <version>1.1.0</version>
            </dependency>
            <dependency>
                <groupId>org.mydotey.codec</groupId>
                <artifactId>google-protobuf-codec-util</artifactId>
                <version>1.1.0</version>
            </dependency>
            <dependency>
                <groupId>org.mydotey.codec</groupId>
                <artifactId>protostuff-codec-util</artifactId>
                <version>1.1.0</version>
            </dependency>
        </dependencies>
    </dependencyManagement>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-gpg-plugin</artifactId>
                <version>1.6</version>
                <executions>
                    <execution>
                        <id>sign-artifacts</id>
                        <phase>verify</phase>
                        <goals>
                            <goal>sign</goal>
                        </goals>
                    </execution>
                </executions>
            </plugin>
            <plugin>
                <groupId>org.sonatype.plugins</groupId>
                <artifactId>nexus-staging-maven-plugin</artifactId>
                <version>1.6.7</version>
                <extensions>true</extensions>
                <configuration>
                    <serverId>ossrh</serverId>
                    <nexusUrl>https://oss.sonatype.org/</nexusUrl>
                    <autoReleaseAfterClose>true</autoReleaseAfterClose>
                </configuration>
            </plugin>
        </plugins>
    </build>

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

</project>
