<?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>
    <groupId>com.github.zhanhb</groupId>
    <artifactId>thymeleaf-layout-dialect</artifactId>
    <version>2.5.2</version>
    <name>Thymeleaf Layout Dialect</name>
    <description>Thymeleaf Layout Dialect rewritten in java.</description>
    <url>https://github.com/zhanhb/thymeleaf-layout-dialect</url>
    <inceptionYear>2016</inceptionYear>
    <licenses>
        <license>
            <name>The Apache Software License, Version 2.0</name>
            <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
            <distribution>repo</distribution>
        </license>
    </licenses>
    <developers>
        <developer>
            <id>zhanhb</id>
            <name>Huangbin Zhan</name>
            <email>zhanhb88 at gmail.com</email>
            <roles>
                <role>author</role>
                <role>developer</role>
            </roles>
            <timezone>Asia/Shanghai</timezone>
        </developer>
    </developers>
    <contributors>
        <contributor>
            <name>Emanuel Rabina</name>
            <email>emanuelrabina@gmail.com</email>
            <organizationUrl>http://www.ultraq.net.nz/</organizationUrl>
            <roles>
                <role>developer</role>
            </roles>
            <timezone>Pacific/Auckland</timezone>
        </contributor>
        <contributor>
            <name>Justin Munn</name>
            <roles>
                <role>developer</role>
            </roles>
            <properties>
                <contribution>https://github.com/ultraq/thymeleaf-layout-dialect/pull/42</contribution>
            </properties>
        </contributor>
        <contributor>
            <name>Oliver Niekrenz</name>
            <email>oliver@niekrenz.de</email>
            <roles>
                <role>developer</role>
            </roles>
            <properties>
                <contribution>https://github.com/ultraq/thymeleaf-layout-dialect/pull/60</contribution>
            </properties>
        </contributor>
    </contributors>
    <scm>
        <connection>scm:git:git@github.com:zhanhb/thymeleaf-layout-dialect.git/thymeleaf-layout-dialect</connection>
        <developerConnection>scm:git:git@github.com:zhanhb/thymeleaf-layout-dialect.git/thymeleaf-layout-dialect</developerConnection>
        <tag>2.5.2.RELEASE</tag>
        <url>https://github.com/zhanhb/thymeleaf-layout-dialect/thymeleaf-layout-dialect</url>
    </scm>
    <issueManagement>
        <system>Github</system>
        <url>https://github.com/zhanhb/thymeleaf-layout-dialect/issues</url>
    </issueManagement>
    <ciManagement>
        <system>Travis CI</system>
        <url>https://travis-ci.org/zhanhb/thymeleaf-layout-dialect</url>
    </ciManagement>
    <distributionManagement>
        <repository>
            <id>ossrh</id>
            <name>Nexus Release Repository</name>
            <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
        </repository>
        <snapshotRepository>
            <id>ossrh</id>
            <name>Sonatype Nexus Snapshots</name>
            <url>https://oss.sonatype.org/content/repositories/snapshots/</url>
        </snapshotRepository>
        <site>
            <id>gh-pages</id>
            <name>Thymeleaf Layout Dialect GitHub Pages</name>
            <url>git:ssh://git@github.com/zhanhb/thymeleaf-layout-dialect.git?gh-pages#</url>
        </site>
    </distributionManagement>
    <dependencies>
        <dependency>
            <groupId>com.google.code.findbugs</groupId>
            <artifactId>jsr305</artifactId>
            <version>3.0.2</version>
            <scope>compile</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.slf4j</groupId>
            <artifactId>slf4j-api</artifactId>
            <version>1.7.30</version>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.thymeleaf</groupId>
            <artifactId>thymeleaf</artifactId>
            <version>3.0.12.RELEASE</version>
            <scope>compile</scope>
        </dependency>
    </dependencies>
    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.felix</groupId>
                <artifactId>maven-bundle-plugin</artifactId>
                <version>4.2.1</version>
                <extensions>true</extensions>
            </plugin>
        </plugins>
    </build>
</project>
