<?xml version="1.0" encoding="UTF-8"?>
<project xmlns="http://maven.apache.org/POM/4.0.0" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  <modelVersion>4.0.0</modelVersion>
  <groupId>dev.mbo</groupId>
  <artifactId>spring-kotlin-reflection</artifactId>
  <version>1.0.0</version>
  <name>spring-kotlin-reflection</name>
  <description>Reflection library for Kotlin with Spring Boot</description>
  <url>https://mbo.dev</url>
  <organization>
    <name>mbo.dev</name>
    <url>https://mbo.dev</url>
  </organization>
  <licenses>
    <license>
      <name>Apache License, Version 2.0</name>
      <url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
      <distribution>repo</distribution>
    </license>
  </licenses>
  <developers>
    <developer>
      <id>mbo</id>
      <name>Manuel Bogner</name>
      <email>outrage_breath.0t@icloud.com</email>
      <organization>mbo.dev</organization>
      <organizationUrl>https://mbo.dev</organizationUrl>
      <roles>
        <role>developer</role>
        <role>architect</role>
      </roles>
      <timezone>Europe/Vienna</timezone>
    </developer>
  </developers>
  <scm>
    <connection>git@github.com:mbogner/library-spring-kotlin-reflection.git</connection>
    <developerConnection>git@github.com:mbogner/library-spring-kotlin-reflection.git</developerConnection>
    <url>https://github.com/mbogner/library-spring-kotlin-reflection</url>
  </scm>
  <dependencyManagement>
    <dependencies>
      <dependency>
        <groupId>dev.mbo</groupId>
        <artifactId>spring-boot-bom</artifactId>
        <version>2024.10.2</version>
        <type>pom</type>
        <scope>import</scope>
      </dependency>
    </dependencies>
  </dependencyManagement>
  <dependencies>
    <dependency>
      <groupId>org.springframework.boot</groupId>
      <artifactId>spring-boot-starter</artifactId>
      <scope>compile</scope>
    </dependency>
    <dependency>
      <groupId>org.jetbrains.kotlin</groupId>
      <artifactId>kotlin-stdlib</artifactId>
      <version>2.0.21</version>
      <scope>compile</scope>
    </dependency>
  </dependencies>
</project>
