mirror of
https://github.com/dev-claw/vripper-project.git
synced 2026-08-19 08:35:41 +02:00
129 lines
4.0 KiB
XML
129 lines
4.0 KiB
XML
<?xml version="1.0" encoding="UTF-8"?>
|
|
<project xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
|
|
xmlns="http://maven.apache.org/POM/4.0.0"
|
|
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>
|
|
<artifactId>spring-boot-starter-parent</artifactId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<relativePath/>
|
|
<version>3.0.6</version>
|
|
</parent>
|
|
<groupId>me.mnlr.vripper</groupId>
|
|
<artifactId>vripper-core</artifactId>
|
|
<version>4.1.0</version>
|
|
<name>vripper-core</name>
|
|
<description>vripper-core</description>
|
|
<properties>
|
|
<java.version>17</java.version>
|
|
<kotlin.version>1.8.21</kotlin.version>
|
|
<maven.deploy.skip>false</maven.deploy.skip>
|
|
</properties>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<artifactId>kotlin-reflect</artifactId>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>kotlin-stdlib</artifactId>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>jackson-module-kotlin</artifactId>
|
|
<groupId>com.fasterxml.jackson.module</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>spring-boot-starter-jdbc</artifactId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>liquibase-core</artifactId>
|
|
<groupId>org.liquibase</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>hsqldb</artifactId>
|
|
<groupId>org.hsqldb</groupId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>httpclient</artifactId>
|
|
<groupId>org.apache.httpcomponents</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>htmlcleaner</artifactId>
|
|
<groupId>net.sourceforge.htmlcleaner</groupId>
|
|
<version>2.26</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>reactor-core</artifactId>
|
|
<groupId>io.projectreactor</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>failsafe</artifactId>
|
|
<groupId>net.jodah</groupId>
|
|
<version>2.4.4</version>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>caffeine</artifactId>
|
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>jackson-databind</artifactId>
|
|
<groupId>com.fasterxml.jackson.core</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.dataformat</groupId>
|
|
<artifactId>jackson-dataformat-yaml</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>com.fasterxml.jackson.datatype</groupId>
|
|
<artifactId>jackson-datatype-jsr310</artifactId>
|
|
</dependency>
|
|
|
|
<dependency>
|
|
<artifactId>spring-boot-starter-test</artifactId>
|
|
<groupId>org.springframework.boot</groupId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>spring-restdocs-mockmvc</artifactId>
|
|
<groupId>org.springframework.restdocs</groupId>
|
|
<scope>test</scope>
|
|
</dependency>
|
|
</dependencies>
|
|
|
|
<build>
|
|
<sourceDirectory>${project.basedir}/src/main/kotlin</sourceDirectory>
|
|
<testSourceDirectory>${project.basedir}/src/test/kotlin</testSourceDirectory>
|
|
<plugins>
|
|
<plugin>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<artifactId>kotlin-maven-plugin</artifactId>
|
|
<configuration>
|
|
<args>
|
|
<arg>-Xjsr305=strict</arg>
|
|
</args>
|
|
<compilerPlugins>
|
|
<plugin>spring</plugin>
|
|
</compilerPlugins>
|
|
</configuration>
|
|
<dependencies>
|
|
<dependency>
|
|
<artifactId>kotlin-maven-allopen</artifactId>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
<version>${kotlin.version}</version>
|
|
</dependency>
|
|
</dependencies>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
<distributionManagement>
|
|
<repository>
|
|
<id>github</id>
|
|
<name>GitHub death-claw Apache Maven Packages</name>
|
|
<url>https://maven.pkg.github.com/death-claw/vripper-project</url>
|
|
</repository>
|
|
</distributionManagement>
|
|
</project>
|