<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.apicurio</groupId>
        <artifactId>apicurio-codegen-parent</artifactId>
        <version>1.1.0.RC1</version>
        <relativePath>../pom.xml</relativePath>
    </parent>

    <artifactId>apicurio-codegen-maven-plugin</artifactId>
    <packaging>maven-plugin</packaging>
    <name>apicurio-codegen-maven-plugin</name>
    
    <properties>
    	<maven.version>3.9.0</maven.version>
    	<maven-annotations.version>3.8.1</maven-annotations.version>
    </properties>

    <dependencies>
        <!-- Apicurio Codegen -->
        <dependency>
            <groupId>io.apicurio</groupId>
            <artifactId>apicurio-codegen</artifactId>
            <version>${project.version}</version>
        </dependency>

        <!-- Maven -->
        <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-plugin-api</artifactId>
            <version>${maven.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.maven</groupId>
            <artifactId>maven-core</artifactId>
            <version>${maven.version}</version>
            <scope>provided</scope>
        </dependency>
        <dependency>
            <groupId>org.apache.maven.plugin-tools</groupId>
            <artifactId>maven-plugin-annotations</artifactId>
            <version>${maven-annotations.version}</version>
            <scope>provided</scope>
        </dependency>
    </dependencies>

    <build>
        <plugins>
            <plugin>
                <groupId>org.apache.maven.plugins</groupId>
                <artifactId>maven-plugin-plugin</artifactId>
                <version>3.8.1</version>
            </plugin>
        </plugins>
    </build>

</project>
