66 lines
1.7 KiB
XML
66 lines
1.7 KiB
XML
|
<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>Test</groupId>
|
||
|
<artifactId>Test</artifactId>
|
||
|
<version>0.0.1-SNAPSHOT</version>
|
||
|
|
||
|
<repositories>
|
||
|
<repository>
|
||
|
<id>Eclipse Paho Repo</id>
|
||
|
<url>https://repo.eclipse.org/content/repositories/paho-releases/</url>
|
||
|
</repository>
|
||
|
</repositories>
|
||
|
|
||
|
<dependencies>
|
||
|
<dependency>
|
||
|
<groupId>org.eclipse.paho</groupId>
|
||
|
<artifactId>org.eclipse.paho.client.mqttv3</artifactId>
|
||
|
<version>1.0.2</version>
|
||
|
</dependency>
|
||
|
|
||
|
<dependency>
|
||
|
<groupId>com.github.ben-manes.caffeine</groupId>
|
||
|
<artifactId>caffeine</artifactId>
|
||
|
<version>2.5.4</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>com.jakewharton</groupId>
|
||
|
<artifactId>disklrucache</artifactId>
|
||
|
<version>2.0.2</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.mapdb</groupId>
|
||
|
<artifactId>mapdb</artifactId>
|
||
|
<version>3.0.5</version>
|
||
|
</dependency>
|
||
|
<dependency>
|
||
|
<groupId>org.joml</groupId>
|
||
|
<artifactId>joml</artifactId>
|
||
|
<version>1.9.9</version>
|
||
|
</dependency>
|
||
|
</dependencies>
|
||
|
<build>
|
||
|
<sourceDirectory>src</sourceDirectory>
|
||
|
<resources>
|
||
|
<resource>
|
||
|
<directory>src</directory>
|
||
|
<excludes>
|
||
|
<exclude>**/*.java</exclude>
|
||
|
</excludes>
|
||
|
</resource>
|
||
|
</resources>
|
||
|
<plugins>
|
||
|
<plugin>
|
||
|
<artifactId>maven-compiler-plugin</artifactId>
|
||
|
<version>3.5.1</version>
|
||
|
<configuration>
|
||
|
<source>1.8</source>
|
||
|
<target>1.8</target>
|
||
|
</configuration>
|
||
|
</plugin>
|
||
|
</plugins>
|
||
|
</build>
|
||
|
</project>
|