<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>dev.anip</groupId>
        <artifactId>anip-parent</artifactId>
        <version>0.24.2</version>
    </parent>

    <artifactId>anip-graphql-spring</artifactId>
    <name>ANIP GraphQL Spring</name>
    <description>Spring MVC adapter for the ANIP GraphQL interface</description>

    <dependencies>
        <dependency>
            <groupId>dev.anip</groupId>
            <artifactId>anip-graphql</artifactId>
        </dependency>
        <dependency>
            <groupId>dev.anip</groupId>
            <artifactId>anip-service</artifactId>
        </dependency>
        <dependency>
            <groupId>org.springframework.boot</groupId>
            <artifactId>spring-boot-starter-web</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>
    </dependencies>
</project>
