<?xml version="1.0" encoding="UTF-8"?>
<!--
  ~ Id$: zuv-cloud:z-web-support:/zuv/wui/zuv-cloud/zuv-lib-web-support/pom.xml:20181225110811
  ~
  ~ pom.xml
  ~ Copyright (c) 2002-2020 Luther Inc.
  ~ http://zuv.cc
  ~ All rights reserved.
  -->

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

    <parent>
        <groupId>cc.zuv.cloud</groupId>
        <artifactId>zuv-cloud</artifactId>
        <version>0.0.1</version>
    </parent>

    <modelVersion>4.0.0</modelVersion>
    <groupId>cc.zuv</groupId>
    <artifactId>z-web-support</artifactId>
    <version>0.2.3</version>
    <packaging>jar</packaging>
    <name>zuv-lib-web-support</name>
    <description>Zuv Web Support Library</description>
    <url>https://github.com/zview/${bintray.package}</url>

    <scm>
        <connection>scm:git:git@github.com:zview/${bintray.package}.git</connection>
        <developerConnection>scm:git:git@github.com:zview/${bintray.package}.git</developerConnection>
        <url>https://github.com/zview/${bintray.package}</url>
    </scm>

    <properties>
        <bintray.subject>luther</bintray.subject>
        <bintray.repo>maven</bintray.repo>
        <bintray.package>z-web-support</bintray.package>
    </properties>

    <distributionManagement>
        <repository>
            <id>bintray-repo-maven-zuv</id>
            <url>https://api.bintray.com/maven/${bintray.subject}/${bintray.repo}/${bintray.package}/;publish=1</url>
        </repository>
    </distributionManagement>

	<dependencies>

        <!-- Spring BEGIN-->
        <dependency>
            <groupId>org.springframework.data</groupId>
            <artifactId>spring-data-redis</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.session</groupId>
            <artifactId>spring-session-data-redis</artifactId>
            <scope>provided</scope>
        </dependency>
        <!-- Spring END-->

        <!-- SpringBoot BEGIN-->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-aop</artifactId>
            <scope>provided</scope>
        </dependency>
        <!-- SpringBoot END-->

        <!-- SWAGGER BEGIN-->
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger2</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>io.springfox</groupId>
            <artifactId>springfox-swagger-ui</artifactId>
            <scope>provided</scope>
        </dependency>
        <!-- SWAGGER END-->

        <!-- BASE BEGIN-->
        <dependency>
            <groupId>org.projectlombok</groupId>
            <artifactId>lombok</artifactId>
            <scope>provided</scope>
        </dependency>
        <!-- BASE END-->

        <!-- OTHER END-->
        <dependency>
            <groupId>com.google.code.gson</groupId>
            <artifactId>gson</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>io.jsonwebtoken</groupId>
            <artifactId>jjwt</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>com.github.axet</groupId>
            <artifactId>kaptcha</artifactId>
            <scope>provided</scope>
        </dependency>
        <!-- OTHER BEGIN-->

        <!-- ZUV BEGIN-->
        <dependency>
            <groupId>cc.zuv</groupId>
            <artifactId>z-common</artifactId>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>cc.zuv</groupId>
            <artifactId>z-iostream</artifactId>
            <scope>provided</scope>
        </dependency>
        <!-- ZUV END-->

	</dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-site-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-compiler-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-source-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-javadoc-plugin</artifactId>
            </plugin>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-jar-plugin</artifactId>
                <configuration>
                    <excludes>
                        <exclude>**/*.yml</exclude>
                        <exclude>**/*.properties</exclude>
                    </excludes>
                </configuration>
            </plugin>
        </plugins>
    </build>

</project>
