2019-03-02 15:10:46 +01:00
|
|
|
<?xml version="1.0" encoding="UTF-8"?>
|
2021-10-21 21:36:17 +02:00
|
|
|
<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">
|
2021-07-07 12:45:49 +02:00
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
<groupId>com.mycompany</groupId>
|
|
|
|
<artifactId>ArtificialAutism</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<packaging>jar</packaging>
|
|
|
|
<dependencies>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.commons</groupId>
|
|
|
|
<artifactId>commons-dbcp2</artifactId>
|
|
|
|
<version>2.5.0</version>
|
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>mysql</groupId>
|
|
|
|
<artifactId>mysql-connector-java</artifactId>
|
|
|
|
<version>8.0.13</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.google.guava</groupId>
|
|
|
|
<artifactId>guava</artifactId>
|
|
|
|
<version>26.0-jre</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>com.github.mpkorstanje</groupId>
|
|
|
|
<artifactId>simmetrics-core</artifactId>
|
|
|
|
<version>4.1.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>ws4j</groupId>
|
|
|
|
<artifactId>ws4j</artifactId>
|
|
|
|
<version>1.0.1</version>
|
|
|
|
</dependency>
|
|
|
|
|
2021-10-21 21:36:17 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>stanford-corenlp-models-english</groupId>
|
|
|
|
<artifactId>stanford-corenlp-models-english</artifactId>
|
|
|
|
<version>4.3.1</version>
|
|
|
|
<type>jar</type>
|
2021-07-07 12:45:49 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-10-21 21:36:17 +02:00
|
|
|
<groupId>ejml-simple</groupId>
|
|
|
|
<artifactId>ejml-simple</artifactId>
|
|
|
|
<version>0.39</version>
|
|
|
|
<type>jar</type>
|
2021-07-07 12:45:49 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-10-21 21:36:17 +02:00
|
|
|
<groupId>ejml-core</groupId>
|
|
|
|
<artifactId>ejml-core</artifactId>
|
|
|
|
<version>0.39</version>
|
|
|
|
<type>jar</type>
|
2021-07-07 12:45:49 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
2021-10-21 21:36:17 +02:00
|
|
|
<groupId>ejml-ddense</groupId>
|
|
|
|
<artifactId>ejml-ddense</artifactId>
|
|
|
|
<version>0.39</version>
|
2021-07-07 12:45:49 +02:00
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>jmweAnno</groupId>
|
|
|
|
<artifactId>jmweAnno</artifactId>
|
|
|
|
<version>1.0</version>
|
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>edu.mit.jmwe</groupId>
|
|
|
|
<artifactId>edu.mit.jmwe</artifactId>
|
|
|
|
<version>1.0.2</version>
|
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
2021-10-21 21:36:17 +02:00
|
|
|
|
2021-07-07 12:45:49 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>org.apache.lucene</groupId>
|
|
|
|
<artifactId>lucene-analyzers-common</artifactId>
|
|
|
|
<version>7.2.0</version>
|
|
|
|
<type>jar</type>
|
|
|
|
</dependency>
|
2021-10-21 21:36:17 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>edu.stanford.nlp</groupId>
|
|
|
|
<artifactId>stanford-corenlp</artifactId>
|
|
|
|
<version>4.3.1</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>edu.stanford.nlp</groupId>
|
|
|
|
<artifactId>stanford-corenlp</artifactId>
|
|
|
|
<version>4.3.1</version>
|
|
|
|
<classifier>models</classifier>
|
|
|
|
</dependency>
|
2021-07-07 12:45:49 +02:00
|
|
|
<dependency>
|
|
|
|
<groupId>com.discord4j</groupId>
|
|
|
|
<artifactId>discord4j-core</artifactId>
|
2021-12-02 22:00:41 +01:00
|
|
|
<version>3.2.0</version>
|
2021-07-07 12:45:49 +02:00
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
|
|
<artifactId>kotlin-stdlib-jdk8</artifactId>
|
|
|
|
<version>${kotlin.version}</version>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains.kotlin</groupId>
|
|
|
|
<artifactId>kotlin-test</artifactId>
|
|
|
|
<version>${kotlin.version}</version>
|
|
|
|
<scope>test</scope>
|
|
|
|
</dependency>
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.jetbrains.kotlinx</groupId>
|
|
|
|
<artifactId>kotlinx-coroutines-core-jvm</artifactId>
|
|
|
|
<version>1.5.0</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
|
|
|
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<maven.compiler.source>1.8</maven.compiler.source>
|
|
|
|
<maven.compiler.target>1.8</maven.compiler.target>
|
|
|
|
<mainClass>PresentationLayer.DiscordHandler</mainClass>
|
|
|
|
<kotlin.version>1.5.20-M1</kotlin.version>
|
|
|
|
</properties>
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-dependency-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<phase>install</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>copy-dependencies</goal>
|
|
|
|
</goals>
|
|
|
|
<configuration>
|
|
|
|
<outputDirectory>${project.build.directory}/lib</outputDirectory>
|
|
|
|
</configuration>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<artifactId>maven-jar-plugin</artifactId>
|
|
|
|
<configuration>
|
|
|
|
<archive>
|
|
|
|
<manifest>
|
|
|
|
<addClasspath>true</addClasspath>
|
|
|
|
<classpathPrefix>lib/</classpathPrefix>
|
|
|
|
<mainClass>${mainClass}</mainClass>
|
|
|
|
</manifest>
|
|
|
|
</archive>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<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>
|
|
|
|
<configuration>
|
|
|
|
<jvmTarget>1.8</jvmTarget>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<executions>
|
|
|
|
<execution>
|
|
|
|
<id>compile</id>
|
|
|
|
<phase>compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>compile</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
<execution>
|
|
|
|
<id>testCompile</id>
|
|
|
|
<phase>test-compile</phase>
|
|
|
|
<goals>
|
|
|
|
<goal>testCompile</goal>
|
|
|
|
</goals>
|
|
|
|
</execution>
|
|
|
|
</executions>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
|
|
|
</build>
|
|
|
|
|
2021-12-02 22:00:41 +01:00
|
|
|
</project>
|