<?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>de.loosetie.crudular</groupId>
    <artifactId>lt-crudular-parent</artifactId>
    <version>2.1.1</version>
    <relativePath>../../_parent/pom.xml</relativePath>
  </parent>

  <artifactId>lt-crudular-spring-boot-starter-rest-webmvc</artifactId>

  <name>LT :: CRUDular :: Spring Boot Starter :: REST :: WebMvC</name>
  <!--suppress MavenRedundantGroupId https://codeberg.org/forgejo/forgejo/pulls/6329 waiting for release 10 -->
  <groupId>de.loosetie.crudular</groupId>

  <dependencies>
    <dependency>
      <groupId>de.loosetie.crudular</groupId>
      <artifactId>lt-crudular-spring-boot-starter-base</artifactId>
    </dependency>
    <dependency>
      <groupId>de.loosetie.crudular</groupId>
      <artifactId>lt-crudular-rest-webmvc</artifactId>
    </dependency>
    <dependency>
      <groupId>de.loosetie.logging</groupId>
      <artifactId>lt-logging-servlet</artifactId>
    </dependency>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-jackson</artifactId>
    </dependency>

    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter-test</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>


  <build>
    <plugins>
      <plugin>
        <groupId>org.jetbrains.kotlin</groupId>
        <artifactId>kotlin-maven-plugin</artifactId>

        <configuration combine.self="override">
          <compilerPlugins>
            <plugin>spring</plugin>
            <plugin>all-open</plugin>
            <plugin>no-arg</plugin>
          </compilerPlugins>
        </configuration>
      </plugin>
    </plugins>
  </build>
</project>
