commit 6270e5f3b7062196674aa35c7b52308a24203ffb
parent 9ca0eee27363d2d4b3d425953fd162228ec0335b
Author: Andreas Gruhler <andreas.gruhler@adfinis.com>
Date:   Sun,  8 Dec 2024 20:34:30 +0100
fix: add javax.xml.bind
Diffstat:
2 files changed, 12 insertions(+), 2 deletions(-)
diff --git a/nix/shell.nix b/nix/shell.nix
@@ -0,0 +1,7 @@
+{ pkgs ? import <nixpkgs> {} }:
+  pkgs.mkShell {
+    nativeBuildInputs = with pkgs.buildPackages; [
+      jre8
+      maven
+    ];
+}
diff --git a/pom.xml b/pom.xml
@@ -10,8 +10,6 @@
     <packaging>jar</packaging>
 
     <dependencies>
-
-
         <dependency>
             <groupId>rocks.xmpp</groupId>
             <artifactId>xmpp-core-client</artifactId>
@@ -32,6 +30,11 @@
             <artifactId>bcpkix-jdk15on</artifactId>
             <version>1.56</version>
         </dependency>
+        <dependency>
+            <groupId>javax.xml.bind</groupId>
+            <artifactId>jaxb-api</artifactId>
+            <version>2.3.0</version>
+         </dependency>
     </dependencies>
 
     <build>