Skip to content

Commit faf3f05

Browse files
committed
fix: add missing dependencies
1 parent 9df76d4 commit faf3f05

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

backend/pom.xml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,11 @@
3232
<artifactId>quarkus-jdbc-sqlite4j</artifactId>
3333
<version>${sqlite4j.version}</version>
3434
</dependency>
35+
<dependency>
36+
<groupId>io.quarkus</groupId>
37+
<artifactId>quarkus-junit5</artifactId>
38+
<scope>test</scope>
39+
</dependency>
3540
</dependencies>
3641
<build>
3742
<plugins>

server/pom.xml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,25 @@
1919
<artifactId>power-server-backend</artifactId>
2020
<version>${project.version}</version>
2121
</dependency>
22+
<dependency>
23+
<groupId>io.quarkus</groupId>
24+
<artifactId>quarkus-rest-jackson</artifactId>
25+
</dependency>
2226
<dependency>
2327
<groupId>org.assertj</groupId>
2428
<artifactId>assertj-core</artifactId>
2529
<scope>test</scope>
2630
</dependency>
31+
<dependency>
32+
<groupId>io.quarkus</groupId>
33+
<artifactId>quarkus-junit5</artifactId>
34+
<scope>test</scope>
35+
</dependency>
36+
<dependency>
37+
<groupId>io.rest-assured</groupId>
38+
<artifactId>rest-assured</artifactId>
39+
<scope>test</scope>
40+
</dependency>
2741
<dependency>
2842
<groupId>io.quarkus</groupId>
2943
<artifactId>quarkus-rest-client</artifactId>

0 commit comments

Comments
 (0)