<?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 https://maven.apache.org/xsd/maven-4.0.0.xsd">
    <modelVersion>4.0.0</modelVersion>

    <parent>
        <groupId>io.quarkus</groupId>
        <artifactId>quarkus-tools-parent</artifactId>
        <version>3.32.4</version>
    </parent>

    <artifactId>quarkus-devtools-base-codestarts</artifactId>
    <name>Quarkus - Dev tools - Base Codestarts</name>

    <build>
        <!--
           | NOTE: the resources include Gradle wrapper 8.14.
           |       This version of the wrapper is used to generate projects targeting Quarkus 3.25 and earlier.
           |       Starting from 3.26.4, the tooling codestart moved from the base codestarts to the project core
           |       codestarts (referenced from the platform metadata).
        -->
        <resources>
            <resource>
                <directory>src/main/resources</directory>
            </resource>
            <resource>
                <directory>src/main/filtered</directory>
                <filtering>true</filtering>
            </resource>
        </resources>
        <pluginManagement>
            <plugins>
                <plugin>
                    <artifactId>maven-resources-plugin</artifactId>
                    <configuration>
                        <propertiesEncoding>UTF-8</propertiesEncoding>
                    </configuration>
                </plugin>
            </plugins>
        </pluginManagement>
    </build>
</project>
