summaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorManuel Bentele2021-01-08 13:44:15 +0100
committerManuel Bentele2021-01-08 13:44:15 +0100
commitaac457735f24129b9113c53ae93a1a11f524b6c0 (patch)
treefeb3e22c27f54a2c1fbb8aeef149b4afd80ab25d /pom.xml
parentAdd JUnit 5 and its Maven integration for tests (diff)
downloadmaster-sync-shared-aac457735f24129b9113c53ae93a1a11f524b6c0.tar.gz
master-sync-shared-aac457735f24129b9113c53ae93a1a11f524b6c0.tar.xz
master-sync-shared-aac457735f24129b9113c53ae93a1a11f524b6c0.zip
Add support for QCOW2 images for QEMU
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml22
1 files changed, 20 insertions, 2 deletions
diff --git a/pom.xml b/pom.xml
index 3ea3522..6daf903 100644
--- a/pom.xml
+++ b/pom.xml
@@ -47,8 +47,8 @@
<artifactId>maven-compiler-plugin</artifactId>
<version>3.6.1</version>
<configuration>
- <source>1.7</source>
- <target>1.7</target>
+ <source>1.8</source>
+ <target>1.8</target>
</configuration>
</plugin>
<plugin>
@@ -82,6 +82,14 @@
<version>3.0.0-M5</version>
</plugin>
</plugins>
+ <testResources>
+ <testResource>
+ <directory>${basedir}/src/test/resources</directory>
+ <includes>
+ <include>disk/*</include>
+ </includes>
+ </testResource>
+ </testResources>
</build>
<dependencies>
@@ -126,5 +134,15 @@
<artifactId>lz4-java</artifactId>
<version>1.4.1</version>
</dependency>
+ <dependency>
+ <groupId>commons-io</groupId>
+ <artifactId>commons-io</artifactId>
+ <version>2.8.0</version>
+ </dependency>
+ <dependency>
+ <groupId>com.google.jimfs</groupId>
+ <artifactId>jimfs</artifactId>
+ <version>1.1</version>
+ </dependency>
</dependencies>
</project>