<?xml version="1.0"?>
<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>com.github.kaizen4j</groupId>
        <artifactId>kaizen4j</artifactId>
        <version>1.3.0</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <artifactId>kaizen4j-spring-boot-starter</artifactId>
    <name>kaizen4j-spring-boot-starter</name>
    <url>https://github.com/kaizen4j/essential-tools/kaizen4j-spring-boot-starter</url>

    <dependencies>
        <!-- test -->
        <dependency>
            <groupId>junit</groupId>
            <artifactId>junit</artifactId>
            <scope>test</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-aop</artifactId>
            <scope>compile</scope>
        </dependency>
        <!-- 元数据处理，打成 jar 包之后会生成 META-INF/spring-configuration-metadata.json -->
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-configuration-processor</artifactId>
            <scope>compile</scope>
            <optional>true</optional>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-autoconfigure</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-autoconfigure-processor</artifactId>
            <scope>compile</scope>
            <optional>true</optional>
        </dependency>
        <!-- javax.servlet -->
        <dependency>
            <groupId>javax.servlet</groupId>
            <artifactId>javax.servlet-api</artifactId>
            <scope>provided</scope>
        </dependency>
        <!-- com.alibaba -->
        <dependency>
            <groupId>com.alibaba</groupId>
            <artifactId>druid</artifactId>
            <scope>compile</scope>
        </dependency>
        <!-- com.google.guava -->
        <dependency>
            <groupId>com.google.guava</groupId>
            <artifactId>guava</artifactId>
            <scope>compile</scope>
        </dependency>
        <!-- org.kaizen4j -->
        <dependency>
            <groupId>com.github.kaizen4j</groupId>
            <artifactId>kaizen4j-common</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>com.github.kaizen4j</groupId>
            <artifactId>kaizen4j-data</artifactId>
            <scope>compile</scope>
        </dependency>
        <dependency>
            <groupId>com.github.kaizen4j</groupId>
            <artifactId>kaizen4j-integration</artifactId>
            <scope>compile</scope>
        </dependency>
    </dependencies>
</project>
