Select Git revision
pom.xml 5.64 KiB
<?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>
<parent>
<groupId>de.tobias.playpad</groupId>
<artifactId>PlayWallDesktop</artifactId>
<version>7.0.1</version>
</parent>
<artifactId>PlayWallCore</artifactId>
<dependencies>
<!--Own libraries-->
<dependency>
<groupId>de.thecodelabs</groupId>
<artifactId>libUtils</artifactId>
</dependency>
<dependency>
<groupId>de.thecodelabs</groupId>
<artifactId>libLogger</artifactId>
</dependency>
<dependency>
<groupId>de.thecodelabs</groupId>
<artifactId>libLogger-slf4j</artifactId>
</dependency>
<dependency>
<groupId>de.thecodelabs</groupId>
<artifactId>libPlugins-core</artifactId>
</dependency>
<dependency>
<groupId>de.thecodelabs</groupId>
<artifactId>libPlugins-versionizer</artifactId>
</dependency>
<dependency>
<groupId>de.thecodelabs.versionizer</groupId>
<artifactId>api</artifactId>
<version>${versionizer-api.version}</version>
</dependency>
<!--Audio-->
<dependency>
<groupId>javazoom</groupId>
<artifactId>jlayer</artifactId>
<version>${jlayer.version}</version>
</dependency>
<!--Midi-->
<dependency>
<groupId>de.thecodelabs</groupId>
<artifactId>libMidi</artifactId>
</dependency>
<!--Network/Json-->
<dependency>
<groupId>com.google.code.gson</groupId>
<artifactId>gson</artifactId>
<version>${gson.version}</version>
</dependency>
<dependency>
<groupId>org.xerial</groupId>
<artifactId>sqlite-jdbc</artifactId>
<version>${sqlite-jdbc.version}</version>
</dependency>
<dependency>
<groupId>io.github.openunirest</groupId>
<artifactId>unirest-java</artifactId>