aboutsummaryrefslogtreecommitdiffstats
path: root/pom.xml
diff options
context:
space:
mode:
authorDominic Rogetzer <e1627756@student.tuwien.ac.at>2018-05-05 15:35:43 +0200
committerFelix Kehrer <felix.kehrer@gmail.com>2018-05-07 14:55:09 +0200
commit301f1613c58f619fc65c3c87db5c558f463500d5 (patch)
tree2792760b3553e422e3103ca5147a8563bdc7f2e7 /pom.xml
parent3d28d350883dce1efebf84f88674b65363b75b80 (diff)
downloadsepm-groupproject-301f1613c58f619fc65c3c87db5c558f463500d5.tar.gz
sepm-groupproject-301f1613c58f619fc65c3c87db5c558f463500d5.tar.xz
sepm-groupproject-301f1613c58f619fc65c3c87db5c558f463500d5.zip
Add dbunit as dependency
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml8
1 files changed, 7 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 42f24e7..094ded3 100644
--- a/pom.xml
+++ b/pom.xml
@@ -26,6 +26,7 @@
<mockito.version>2.18.0</mockito.version>
<google-java-format.version>1.5</google-java-format.version>
<testfx.version>4.0.13-alpha</testfx.version>
+ <dbunit.version>2.5.1</dbunit.version>
<!-- plugins -->
<maven-surefire-plugin.version>2.21.0</maven-surefire-plugin.version>
<maven-shade-plugin.version>3.1.1</maven-shade-plugin.version>
@@ -71,7 +72,7 @@
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>${h2.version}</version>
- <scope>runtime</scope>
+ <scope>compile</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
@@ -115,6 +116,11 @@
<version>${testfx.version}</version>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.dbunit</groupId>
+ <artifactId>dbunit</artifactId>
+ <version>${dbunit.version}</version>
+ </dependency>
</dependencies>
<build>