summaryrefslogtreecommitdiff
path: root/core/pom.xml
diff options
context:
space:
mode:
authorMatthias Andreas Benkard <code@mail.matthias.benkard.de>2024-06-23 15:48:49 +0200
committerMatthias Andreas Benkard <code@mail.matthias.benkard.de>2024-06-23 15:48:49 +0200
commitb69b3017699b960ff5133b8ec34bff786bec0f77 (patch)
tree7f783564e62f6a8daf073500b378dc0b0105f4e5 /core/pom.xml
parent4df91c9bde01c94efac9e89b8c4dfc1a3f2c14e1 (diff)
test: Add FormatterTest.
Change-Id: Id627819583e8c9867b3950b7d8aac6830e5f3f80
Diffstat (limited to 'core/pom.xml')
-rw-r--r--core/pom.xml18
1 files changed, 18 insertions, 0 deletions
diff --git a/core/pom.xml b/core/pom.xml
index cb61c20..a75acd5 100644
--- a/core/pom.xml
+++ b/core/pom.xml
@@ -42,6 +42,19 @@ SPDX-License-Identifier: LGPL-3.0-or-later
<artifactId>parsson</artifactId>
<version>1.1.6</version>
</dependency>
+
+ <dependency>
+ <groupId>org.junit.jupiter</groupId>
+ <artifactId>junit-jupiter-engine</artifactId>
+ <version>5.10.2</version>
+ <scope>test</scope>
+ </dependency>
+ <dependency>
+ <groupId>org.junit.jupiter</groupId>
+ <artifactId>junit-jupiter-api</artifactId>
+ <version>5.10.2</version>
+ <scope>test</scope>
+ </dependency>
</dependencies>
<build>
@@ -58,6 +71,11 @@ SPDX-License-Identifier: LGPL-3.0-or-later
</configuration>
</plugin>
+ <plugin>
+ <artifactId>maven-surefire-plugin</artifactId>
+ <version>3.2.5</version>
+ </plugin>
+
</plugins>
</build>