summaryrefslogtreecommitdiff
path: root/pom.xml
diff options
context:
space:
mode:
authorSzymon Szukalski <szymon@skas.io>2024-07-23 14:48:26 +1000
committerSzymon Szukalski <szymon@skas.io>2024-07-23 14:48:26 +1000
commitfc96ec673822d9f1cbe0e5eb004c12b7f8f2db9b (patch)
tree848e9b7e2f7958b168b1494531dae2ffc5e9f81e /pom.xml
parentd4c94470514f28849a5b3cbd9d04982825187554 (diff)
Create JAXB beans and initial test for request model
Diffstat (limited to 'pom.xml')
-rw-r--r--pom.xml13
1 files changed, 12 insertions, 1 deletions
diff --git a/pom.xml b/pom.xml
index 7538324..7733738 100644
--- a/pom.xml
+++ b/pom.xml
@@ -38,12 +38,23 @@
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-web</artifactId>
</dependency>
-
+ <dependency>
+ <groupId>jakarta.xml.bind</groupId>
+ <artifactId>jakarta.xml.bind-api</artifactId>
+ </dependency>
+ <dependency>
+ <groupId>org.glassfish.jaxb</groupId>
+ <artifactId>jaxb-runtime</artifactId>
+ </dependency>
<dependency>
<groupId>org.springframework.boot</groupId>
<artifactId>spring-boot-starter-test</artifactId>
<scope>test</scope>
</dependency>
+ <dependency>
+ <groupId>org.assertj</groupId>
+ <artifactId>assertj-core</artifactId>
+ </dependency>
</dependencies>
<build>