cloudconfig/pom.xml

106 lines
3.9 KiB
XML
Raw Normal View History

2023-05-22 05:12:06 +02:00
<?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>
2025-01-10 02:42:06 +01:00
<parent>
<groupId>dev.w9r.pom</groupId>
<artifactId>spring-boot-starter</artifactId>
<version>0.1.12</version>
2025-01-10 02:42:06 +01:00
</parent>
<groupId>dev.w9r.service</groupId>
2023-05-22 05:12:06 +02:00
<artifactId>config</artifactId>
<version>0.0.1-SNAPSHOT</version>
<name>config</name>
<description>config</description>
<url>https://w9r.dev/w9r.dev/configserver</url>
<licenses>
<license>
2025-01-10 02:42:06 +01:00
<name>MIT</name>
<url>https://spdx.org/licenses/MIT.html</url>
2023-05-22 05:12:06 +02:00
</license>
</licenses>
<developers>
<developer>
<name>Oliver Weyhmüller</name>
<email>oliver@weyhmueller.de</email>
<organization>Oliver Weyhmüller</organization>
<organizationUrl>https://www.weyhmueller.de</organizationUrl>
</developer>
</developers>
<scm>
<url>https://w9r.dev/w9r.dev/configserver</url>
</scm>
<properties>
2025-01-10 02:42:06 +01:00
<maven.compiler.source>21</maven.compiler.source>
<maven.compiler.target>21</maven.compiler.target>
2023-05-22 05:12:06 +02:00
</properties>
<dependencies>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-config-server</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.cloud</groupId>
<artifactId>spring-cloud-starter-vault-config</artifactId>
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
2025-01-10 02:42:06 +01:00
<artifactId>spring-boot-starter-security</artifactId>
2023-05-22 05:12:06 +02:00
</dependency>
<dependency>
2025-01-10 02:42:06 +01:00
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
<version>${kotlin.version}</version>
2023-05-22 05:12:06 +02:00
</dependency>
<dependency>
2025-01-10 02:42:06 +01:00
<groupId>org.junit.jupiter</groupId>
<artifactId>junit-jupiter</artifactId>
<version>5.11.4</version>
2023-05-22 05:12:06 +02:00
<scope>test</scope>
</dependency>
</dependencies>
<build>
2025-01-10 02:42:06 +01:00
<sourceDirectory>src/main/kotlin</sourceDirectory>
2023-05-22 05:12:06 +02:00
<plugins>
<plugin>
2025-01-10 02:42:06 +01:00
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
2023-05-22 05:12:06 +02:00
</plugin>
<plugin>
2025-01-10 02:42:06 +01:00
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
2023-05-22 05:12:06 +02:00
<executions>
<execution>
2025-01-10 02:42:06 +01:00
<id>compile</id>
<phase>process-sources</phase>
2023-05-22 05:12:06 +02:00
<goals>
2025-01-10 02:42:06 +01:00
<goal>compile</goal>
2023-05-22 05:12:06 +02:00
</goals>
</execution>
</executions>
<configuration>
2025-01-10 02:42:06 +01:00
<compilerPlugins>
<plugin>spring</plugin>
</compilerPlugins>
<args>
<arg>-Xjsr305=strict</arg>
</args>
2023-05-22 05:12:06 +02:00
</configuration>
<dependencies>
<dependency>
2025-01-10 02:42:06 +01:00
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-noarg</artifactId>
<version>${kotlin.version}</version>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-allopen</artifactId>
<version>${kotlin.version}</version>
2023-05-22 05:12:06 +02:00
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
</project>