2017-03-26 16:46:37 +03: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 http://maven.apache.org/xsd/maven-4.0.0.xsd">
|
|
|
|
<modelVersion>4.0.0</modelVersion>
|
|
|
|
|
|
|
|
<groupId>eu.mikroskeem.uurimustoo</groupId>
|
|
|
|
<artifactId>algoritmidetest</artifactId>
|
|
|
|
<version>1.0-SNAPSHOT</version>
|
|
|
|
|
|
|
|
<!-- Project properties -->
|
|
|
|
<properties>
|
|
|
|
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
|
|
|
|
<project.java.version>1.8</project.java.version>
|
|
|
|
</properties>
|
|
|
|
|
|
|
|
<!-- Repositories -->
|
|
|
|
<repositories>
|
|
|
|
<repository>
|
|
|
|
<id>mikroskeem-repo</id>
|
|
|
|
<name>mikroskeem Maven Repository</name>
|
|
|
|
<url>https://repo.wut.ee/repository/mikroskeem-repo/</url>
|
|
|
|
<releases>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</releases>
|
|
|
|
<snapshots>
|
|
|
|
<enabled>true</enabled>
|
|
|
|
</snapshots>
|
|
|
|
</repository>
|
|
|
|
</repositories>
|
|
|
|
|
|
|
|
<build>
|
|
|
|
<plugins>
|
|
|
|
<!-- Compiler configuration -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.apache.maven.plugins</groupId>
|
|
|
|
<artifactId>maven-compiler-plugin</artifactId>
|
|
|
|
<version>3.6.1</version>
|
|
|
|
<configuration>
|
|
|
|
<source>${project.java.version}</source>
|
|
|
|
<target>${project.java.version}</target>
|
|
|
|
<showWarnings>true</showWarnings>
|
|
|
|
<showDeprecation>true</showDeprecation>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
|
|
|
|
<!-- Execute directly -->
|
|
|
|
<plugin>
|
|
|
|
<groupId>org.codehaus.mojo</groupId>
|
|
|
|
<artifactId>exec-maven-plugin</artifactId>
|
|
|
|
<version>1.6.0</version>
|
|
|
|
<configuration>
|
|
|
|
<mainClass>eu.mikroskeem.uurimustoo.algoritmidetest.Main</mainClass>
|
|
|
|
</configuration>
|
|
|
|
</plugin>
|
|
|
|
</plugins>
|
2017-03-26 17:16:46 +03:00
|
|
|
<defaultGoal>compile exec:java</defaultGoal>
|
2017-03-26 16:46:37 +03:00
|
|
|
</build>
|
|
|
|
|
|
|
|
<dependencies>
|
|
|
|
<!-- Tools -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>eu.mikroskeem</groupId>
|
2017-03-26 17:50:35 +03:00
|
|
|
<artifactId>shuriken.instrumentation</artifactId>
|
2017-03-26 16:46:37 +03:00
|
|
|
<version>0.0.1-SNAPSHOT</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Lombok -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.projectlombok</groupId>
|
|
|
|
<artifactId>lombok</artifactId>
|
|
|
|
<version>1.16.16</version>
|
|
|
|
<scope>provided</scope>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- Classpath scanner -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>io.github.lukehutch</groupId>
|
|
|
|
<artifactId>fast-classpath-scanner</artifactId>
|
|
|
|
<version>LATEST</version>
|
|
|
|
</dependency>
|
|
|
|
|
|
|
|
<!-- ######## Compressors ######## -->
|
|
|
|
|
|
|
|
<!-- XZ -->
|
|
|
|
<dependency>
|
|
|
|
<groupId>org.tukaani</groupId>
|
|
|
|
<artifactId>xz</artifactId>
|
|
|
|
<version>1.6</version>
|
|
|
|
</dependency>
|
|
|
|
</dependencies>
|
2017-03-26 17:16:46 +03:00
|
|
|
</project>
|