switch to error-prone annotations to replace LGPL dependency (#50)
[storage-units.git] / storage-units-mongodb / pom.xml
blobc2360172ecfee31e8d94400b1426bbf4e9bd821a
1 <?xml version="1.0" encoding="UTF-8"?>
2 <!--
3   ~ SPDX-FileCopyrightText: The Storage-Units Authors
4   ~ SPDX-License-Identifier: 0BSD
5   -->
6 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
7          xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
8     <modelVersion>4.0.0</modelVersion>
10     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
11     <!--                                  PARENT                                 -->
12     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
13     <!-- https://maven.apache.org/pom.html#Inheritance -->
14     <parent>
15         <groupId>wtf.metio.storage-units</groupId>
16         <artifactId>storage-units.java</artifactId>
17         <version>9999.99.99-SNAPSHOT</version>
18     </parent>
20     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
21     <!--                               COORDINATES                               -->
22     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
23     <!-- https://maven.apache.org/pom.html#Maven_Coordinates -->
24     <artifactId>storage-units-mongodb</artifactId>
26     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
27     <!--                               INFORMATIONS                              -->
28     <!-- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -->
29     <!-- https://maven.apache.org/pom.html#More_Project_Information -->
30     <name>Storage Units :: MongoDB</name>
32     <dependencies>
33         <dependency>
34             <groupId>wtf.metio.storage-units</groupId>
35             <artifactId>storage-units-model</artifactId>
36             <version>${project.version}</version>
37         </dependency>
38         <dependency>
39             <groupId>org.mongodb</groupId>
40             <artifactId>mongodb-driver</artifactId>
41         </dependency>
42         <dependency>
43             <groupId>org.jspecify</groupId>
44             <artifactId>jspecify</artifactId>
45         </dependency>
46         <dependency>
47             <groupId>org.mockito</groupId>
48             <artifactId>mockito-core</artifactId>
49             <scope>test</scope>
50         </dependency>
51     </dependencies>
52 </project>