mirror of
https://github.com/dev-claw/vripper-project.git
synced 2026-08-19 08:35:41 +02:00
148 lines
5.3 KiB
XML
148 lines
5.3 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>
|
|
<groupId>me.vripper</groupId>
|
|
<artifactId>vripper-project</artifactId>
|
|
<version>${revision}</version>
|
|
</parent>
|
|
|
|
<artifactId>vripper-core</artifactId>
|
|
<name>vripper-core</name>
|
|
<description>vripper-core</description>
|
|
|
|
<dependencies>
|
|
<dependency>
|
|
<artifactId>logback-classic</artifactId>
|
|
<groupId>ch.qos.logback</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>kotlin-stdlib</artifactId>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jetbrains.kotlinx</groupId>
|
|
<artifactId>kotlinx-coroutines-core-jvm</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>kotlin-reflect</artifactId>
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jetbrains.exposed</groupId>
|
|
<artifactId>exposed-jdbc</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>org.jetbrains.exposed</groupId>
|
|
<artifactId>exposed-java-time</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.insert-koin</groupId>
|
|
<artifactId>koin-core-jvm</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>jackson-module-kotlin</artifactId>
|
|
<groupId>com.fasterxml.jackson.module</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>h2</artifactId>
|
|
<groupId>com.h2database</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>httpclient5</artifactId>
|
|
<groupId>org.apache.httpcomponents.client5</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>jcl-over-slf4j</artifactId>
|
|
<groupId>org.slf4j</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>htmlcleaner</artifactId>
|
|
<groupId>net.sourceforge.htmlcleaner</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>failsafe</artifactId>
|
|
<groupId>net.jodah</groupId>
|
|
</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>commons-codec</artifactId>
|
|
<groupId>commons-codec</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>net.java.dev.jna</groupId>
|
|
<artifactId>jna-platform</artifactId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>liquibase-core</artifactId>
|
|
<groupId>org.liquibase</groupId>
|
|
</dependency>
|
|
<dependency>
|
|
<artifactId>liquibase-slf4j</artifactId>
|
|
<groupId>com.mattbertolini</groupId>
|
|
<scope>runtime</scope>
|
|
</dependency>
|
|
<dependency>
|
|
<groupId>io.projectreactor</groupId>
|
|
<artifactId>reactor-core</artifactId>
|
|
</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>
|
|
<version>${kotlin.version}</version>
|
|
<executions>
|
|
<execution>
|
|
<id>compile</id>
|
|
<phase>compile</phase>
|
|
<goals>
|
|
<goal>compile</goal>
|
|
</goals>
|
|
<configuration>
|
|
<sourceDirs>
|
|
<source>src/main/kotlin</source>
|
|
<source>target/generated-sources/annotations</source>
|
|
</sourceDirs>
|
|
</configuration>
|
|
</execution>
|
|
</executions>
|
|
</plugin>
|
|
<plugin>
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
<version>3.3.0</version>
|
|
<configuration>
|
|
<archive>
|
|
<manifestEntries>
|
|
<Build-Time>${maven.build.timestamp}</Build-Time>
|
|
<Built-By>${user.name}</Built-By>
|
|
</manifestEntries>
|
|
</archive>
|
|
</configuration>
|
|
</plugin>
|
|
</plugins>
|
|
</build>
|
|
</project>
|