Files

153 lines
5.5 KiB
XML
Raw Permalink Normal View History

2022-07-23 16:42:52 +01: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>
2023-11-14 00:38:43 +01:00
2022-07-23 16:42:52 +01:00
<artifactId>vripper-web</artifactId>
<name>vripper-web</name>
<description>vripper-web</description>
2023-11-14 00:38:43 +01:00
<parent>
<groupId>me.vripper</groupId>
<artifactId>vripper-project</artifactId>
2024-01-13 21:27:29 +00:00
<version>${revision}</version>
2023-11-14 00:38:43 +01:00
</parent>
2022-07-23 16:42:52 +01:00
<properties>
2025-10-10 21:06:04 +01:00
<spring-boot.version>3.5.6</spring-boot.version>
2022-07-23 16:42:52 +01:00
</properties>
2023-11-14 00:38:43 +01:00
2022-07-23 16:42:52 +01:00
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
2024-02-22 23:28:14 +01:00
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
2022-07-23 16:42:52 +01:00
</dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-websocket</artifactId>
2024-12-14 18:01:02 +01:00
<exclusions>
<exclusion>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-logging</artifactId>
</exclusion>
</exclusions>
2022-07-23 16:42:52 +01:00
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-reflect</artifactId>
</dependency>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-stdlib</artifactId>
</dependency>
2024-12-14 18:01:02 +01:00
<dependency>
<groupId>org.jetbrains.kotlinx</groupId>
<artifactId>kotlinx-coroutines-reactor</artifactId>
</dependency>
<dependency>
<groupId>com.fasterxml.jackson.module</groupId>
<artifactId>jackson-module-kotlin</artifactId>
</dependency>
2022-07-23 16:42:52 +01:00
<dependency>
2023-11-14 00:38:43 +01:00
<groupId>me.vripper</groupId>
2022-07-23 16:42:52 +01:00
<artifactId>vripper-core</artifactId>
2024-01-13 21:27:29 +00:00
<version>${revision}</version>
2022-07-23 16:42:52 +01:00
</dependency>
2023-05-13 17:16:00 +01:00
<dependency>
2023-11-14 00:38:43 +01:00
<groupId>me.vripper</groupId>
2023-05-13 17:16:00 +01:00
<artifactId>vripper-web-ui</artifactId>
2024-01-13 21:27:29 +00:00
<version>${revision}</version>
2022-07-23 16:42:52 +01:00
</dependency>
2024-03-17 13:53:57 +01:00
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-kotlin-stub</artifactId>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
</dependency>
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-kotlin</artifactId>
</dependency>
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-netty-shaded</artifactId>
<scope>runtime</scope>
</dependency>
2022-07-23 16:42:52 +01:00
</dependencies>
<build>
<sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
<testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
<plugins>
<plugin>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-maven-plugin</artifactId>
2023-11-14 00:38:43 +01:00
<version>${spring-boot.version}</version>
2023-11-14 01:00:40 +01:00
<executions>
<execution>
<goals>
<goal>repackage</goal>
</goals>
</execution>
</executions>
2022-07-23 16:42:52 +01:00
</plugin>
<plugin>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-plugin</artifactId>
2023-11-14 00:38:43 +01:00
<version>${kotlin.version}</version>
<executions>
<execution>
<id>compile</id>
2025-03-04 18:00:16 +01:00
<phase>process-sources</phase>
2023-11-14 00:38:43 +01:00
<goals>
<goal>compile</goal>
</goals>
<configuration>
<sourceDirs>
<source>src/main/kotlin</source>
<source>target/generated-sources/annotations</source>
</sourceDirs>
</configuration>
</execution>
</executions>
2022-07-23 16:42:52 +01:00
<configuration>
<args>
<arg>-Xjsr305=strict</arg>
</args>
<compilerPlugins>
<plugin>spring</plugin>
</compilerPlugins>
</configuration>
<dependencies>
<dependency>
<groupId>org.jetbrains.kotlin</groupId>
<artifactId>kotlin-maven-allopen</artifactId>
<version>${kotlin.version}</version>
</dependency>
</dependencies>
</plugin>
</plugins>
</build>
2023-11-14 00:38:43 +01:00
<dependencyManagement>
<dependencies>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-dependencies</artifactId>
<version>${spring-boot.version}</version>
<type>pom</type>
<scope>import</scope>
</dependency>
</dependencies>
</dependencyManagement>
2022-07-23 16:42:52 +01:00
</project>