108 lines
3.5 KiB
XML
108 lines
3.5 KiB
XML
|
|
<?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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
||
|
|
<modelVersion>4.0.0</modelVersion>
|
||
|
|
|
||
|
|
<groupId>org.nisemoe</groupId>
|
||
|
|
<artifactId>konata</artifactId>
|
||
|
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
|
||
|
|
<properties>
|
||
|
|
<java.version>21</java.version>
|
||
|
|
<kotlin.version>1.9.22</kotlin.version>
|
||
|
|
</properties>
|
||
|
|
|
||
|
|
<build>
|
||
|
|
<sourceDirectory>src/main/kotlin</sourceDirectory>
|
||
|
|
<testSourceDirectory>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>
|
||
|
|
</execution>
|
||
|
|
<execution>
|
||
|
|
<id>test-compile</id>
|
||
|
|
<phase>test-compile</phase>
|
||
|
|
<goals>
|
||
|
|
<goal>test-compile</goal>
|
||
|
|
</goals>
|
||
|
|
</execution>
|
||
|
|
</executions>
|
||
|
|
</plugin>
|
||
|
|
<plugin>
|
||
|
|
<groupId>org.codehaus.mojo</groupId>
|
||
|
|
<artifactId>exec-maven-plugin</artifactId>
|
||
|
|
<version>1.6.0</version>
|
||
|
|
<configuration>
|
||
|
|
<mainClass>MainKt</mainClass>
|
||
|
|
</configuration>
|
||
|
|
</plugin>
|
||
|
|
</plugins>
|
||
|
|
</build>
|
||
|
|
|
||
|
|
<dependencies>
|
||
|
|
<!-- For LZMA decompression of replay data -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.commons</groupId>
|
||
|
|
<artifactId>commons-compress</artifactId>
|
||
|
|
<version>1.25.0</version>
|
||
|
|
</dependency>
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.tukaani</groupId>
|
||
|
|
<artifactId>xz</artifactId>
|
||
|
|
<version>1.9</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- Vector computations -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.jetbrains.bio</groupId>
|
||
|
|
<artifactId>viktor</artifactId>
|
||
|
|
<version>1.2.0</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<!-- Math computations -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.apache.commons</groupId>
|
||
|
|
<artifactId>commons-math3</artifactId>
|
||
|
|
<version>3.6.1</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
|
||
|
|
<!-- Coroutines -->
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.jetbrains.kotlinx</groupId>
|
||
|
|
<artifactId>kotlinx-coroutines-core</artifactId>
|
||
|
|
<version>1.7.3</version>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
||
|
|
<artifactId>kotlin-test-junit5</artifactId>
|
||
|
|
<version>${kotlin.version}</version>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.junit.jupiter</groupId>
|
||
|
|
<artifactId>junit-jupiter</artifactId>
|
||
|
|
<version>5.10.0</version>
|
||
|
|
<scope>test</scope>
|
||
|
|
</dependency>
|
||
|
|
|
||
|
|
<dependency>
|
||
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
||
|
|
<artifactId>kotlin-stdlib</artifactId>
|
||
|
|
<version>${kotlin.version}</version>
|
||
|
|
</dependency>
|
||
|
|
</dependencies>
|
||
|
|
|
||
|
|
</project>
|