OneClickLearning/pom.xml

72 lines
1.8 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>fr.irisa.lacodam</groupId>
<artifactId>OneClick Learning</artifactId>
<version>0.1</version>
<packaging>jar</packaging>
<dependencies>
<dependency>
<!-- RealKD -->
<groupId>de.unibonn</groupId>
<artifactId>realKD</artifactId>
<version>0.4.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<!-- Gson: Java to Json conversion -->
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>2.8.1</version>
</dependency>
<dependency>
<!-- JavaFX -->
<groupId>com.oracle</groupId>
<artifactId>javafx</artifactId>
<version>8</version>
<systemPath>${java.home}/lib/ext/jfxrt.jar</systemPath>
<scope>system</scope>
</dependency>
<dependency>
<groupId>org.jetbrains</groupId>
<artifactId>annotations</artifactId>
<version>RELEASE</version>
</dependency>
</dependencies>
<repositories>
<repository>
<id>realKD</id>
<url>https://bitbucket.org/realKD/releases/raw/master/releases</url>
<releases>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>fail</checksumPolicy>
</releases>
<snapshots>
<enabled>true</enabled>
<updatePolicy>always</updatePolicy>
<checksumPolicy>warn</checksumPolicy>
</snapshots>
</repository>
</repositories>
<build>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<source>1.8</source>
<target>1.8</target>
</configuration>
</plugin>
</plugins>
</build>
</project>