<?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.quarkus</groupId>
        <artifactId>quarkus-smallrye-graphql-parent</artifactId>
        <version>9.9.9-ckronberger</version>
    </parent>
    <artifactId>quarkus-smallrye-graphql-dev</artifactId>
    
    <name>Quarkus - SmallRye GraphQL - Runtime Dev mode</name>
    <description>Create GraphQL Endpoints using the code-first approach from MicroProfile GraphQL</description>
    
    <dependencies>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>quarkus-smallrye-graphql</artifactId>
        </dependency>
        <dependency>
            <groupId>${project.groupId}</groupId>
            <artifactId>quarkus-assistant-dev</artifactId>
        </dependency>
    </dependencies>
    
</project>