<?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/maven-v4_0_0.xsd">
  <parent>
    <artifactId>fluapigen</artifactId>
    <groupId>io.toolisticon.fluapigen</groupId>
    <version>1.2.0</version>
  </parent>
  <modelVersion>4.0.0</modelVersion>
  <artifactId>fluapigen-processor</artifactId>
  <name>fluapigen-processor</name>
  <build>
    <plugins>
      <plugin>
        <artifactId>maven-shade-plugin</artifactId>
        <executions>
          <execution>
            <phase>package</phase>
            <goals>
              <goal>shade</goal>
            </goals>
            <configuration>
              <createDependencyReducedPom>true</createDependencyReducedPom>
              <relocations>
                <relocation>
                  <pattern>io.toolisticon.aptk</pattern>
                  <shadedPattern>io.toolisticon.fluapigen._3rdparty.io.toolisticon.aptk</shadedPattern>
                </relocation>
              </relocations>
            </configuration>
          </execution>
        </executions>
      </plugin>
      <plugin>
        <artifactId>maven-compiler-plugin</artifactId>
        <configuration>
          <verbose>true</verbose>
          <annotationProcessorPaths>
            <path>
              <groupId>io.toolisticon.spiap</groupId>
              <artifactId>spiap-processor</artifactId>
              <version>${spiap.version}</version>
            </path>
            <path>
              <groupId>io.toolisticon.aptk</groupId>
              <artifactId>aptk-annotationwrapper-processor</artifactId>
              <version>${aptk.version}</version>
            </path>
            <path>
              <groupId>io.toolisticon.aptk</groupId>
              <artifactId>aptk-annotationwrapper-api</artifactId>
              <version>${aptk.version}</version>
            </path>
            <path>
              <groupId>io.toolisticon.aptk</groupId>
              <artifactId>aptk-compilermessages-processor</artifactId>
              <version>${aptk.version}</version>
            </path>
            <path>
              <groupId>io.toolisticon.aptk</groupId>
              <artifactId>aptk-compilermessages-api</artifactId>
              <version>${aptk.version}</version>
            </path>
          </annotationProcessorPaths>
        </configuration>
      </plugin>
    </plugins>
  </build>
  <dependencies>
    <dependency>
      <groupId>io.toolisticon.aptk</groupId>
      <artifactId>aptk-annotationwrapper-api</artifactId>
      <version>0.23.0</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>io.toolisticon.aptk</groupId>
      <artifactId>aptk-compilermessages-api</artifactId>
      <version>0.23.0</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>io.toolisticon.spiap</groupId>
      <artifactId>spiap-api</artifactId>
      <version>0.11.0</version>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>io.toolisticon.cute</groupId>
      <artifactId>cute</artifactId>
      <version>1.5.1</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>extension-api</artifactId>
          <groupId>io.toolisticon.cute</groupId>
        </exclusion>
        <exclusion>
          <artifactId>extension-plainjava</artifactId>
          <groupId>io.toolisticon.cute</groupId>
        </exclusion>
        <exclusion>
          <artifactId>extension-modulesupport</artifactId>
          <groupId>io.toolisticon.cute</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>io.toolisticon.aptk</groupId>
      <artifactId>aptk-cute</artifactId>
      <version>0.23.0</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <version>4.13.2</version>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.hamcrest</groupId>
      <artifactId>hamcrest-core</artifactId>
      <version>2.2</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>hamcrest</artifactId>
          <groupId>org.hamcrest</groupId>
        </exclusion>
      </exclusions>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
      <version>5.4.0</version>
      <scope>test</scope>
      <exclusions>
        <exclusion>
          <artifactId>byte-buddy</artifactId>
          <groupId>net.bytebuddy</groupId>
        </exclusion>
        <exclusion>
          <artifactId>byte-buddy-agent</artifactId>
          <groupId>net.bytebuddy</groupId>
        </exclusion>
        <exclusion>
          <artifactId>objenesis</artifactId>
          <groupId>org.objenesis</groupId>
        </exclusion>
      </exclusions>
    </dependency>
  </dependencies>
</project>
