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

    <parent>
        <groupId>io.mayfly</groupId>
        <artifactId>mayfly-parent</artifactId>
        <version>1.2.0</version>
    </parent>

    <artifactId>mayfly-runtime</artifactId>
    <packaging>jar</packaging>

    <name>Mayfly Runtime</name>
    <description>运行时模块 - 默认业务实现,组装各能力模块</description>

    <dependencies>
        <dependency>
            <groupId>io.mayfly</groupId>
            <artifactId>mayfly-core</artifactId>
        </dependency>

        <dependency>
            <groupId>io.mayfly</groupId>
            <artifactId>mayfly-router</artifactId>
        </dependency>

        <dependency>
            <groupId>io.mayfly</groupId>
            <artifactId>mayfly-circuitbreaker</artifactId>
        </dependency>

        <dependency>
            <groupId>io.mayfly</groupId>
            <artifactId>mayfly-failover</artifactId>
        </dependency>

        <dependency>
            <groupId>io.mayfly</groupId>
            <artifactId>mayfly-monitor</artifactId>
        </dependency>

        <dependency>
            <groupId>io.mayfly</groupId>
            <artifactId>mayfly-adapter</artifactId>
        </dependency>

        <dependency>
            <groupId>io.mayfly</groupId>
            <artifactId>mayfly-spring-ai-bridge</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework</groupId>
            <artifactId>spring-context</artifactId>
        </dependency>

        <dependency>
            <groupId>io.projectreactor</groupId>
            <artifactId>reactor-core</artifactId>
        </dependency>

        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-test</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>org.junit.jupiter</groupId>
            <artifactId>junit-jupiter</artifactId>
            <scope>test</scope>
        </dependency>

        <dependency>
            <groupId>io.projectreactor</groupId>
            <artifactId>reactor-test</artifactId>
            <scope>test</scope>
        </dependency>
    </dependencies>
</project>