blob: d37bd5b2c55da575ac8a902cd6ef833ba06164a5 [file] [log] [blame]
Matthias Andreas Benkard4e8423d2021-12-19 22:56:09 +01001<?xml version="1.0" encoding="UTF-8"?>
Matthias Andreas Benkardb5d657a2022-02-03 21:14:30 +01002
3<!--
4SPDX-FileCopyrightText: © 2021 Matthias Andreas Benkard <code@mail.matthias.benkard.de>
5
6SPDX-License-Identifier: LGPL-3.0-or-later
7-->
8
Matthias Andreas Benkard4e8423d2021-12-19 22:56:09 +01009<project
10 xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd"
11 xmlns="http://maven.apache.org/POM/4.0.0"
12 xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
13
14 <modelVersion>4.0.0</modelVersion>
15
Matthias Andreas Benkarde14bd1b2021-12-30 21:11:22 +010016 <version>0.1.6-SNAPSHOT</version>
Matthias Andreas Benkard4e8423d2021-12-19 22:56:09 +010017
18 <artifactId>jgvariant-ostree</artifactId>
19 <packaging>jar</packaging>
20
21 <name>JGVariant OSTree Parser</name>
22 <url>https://gerrit.benkard.de/plugins/gitiles/jgvariant</url>
23
24 <description>
25 GVariant serialization and deserialization.
26 </description>
27
28 <parent>
29 <groupId>eu.mulk.jgvariant</groupId>
30 <artifactId>jgvariant-parent</artifactId>
Matthias Andreas Benkarde14bd1b2021-12-30 21:11:22 +010031 <version>0.1.6-SNAPSHOT</version>
Matthias Andreas Benkard4e8423d2021-12-19 22:56:09 +010032 <relativePath>../jgvariant-parent/pom.xml</relativePath>
33 </parent>
34
35 <dependencies>
36 <!-- JGVariant -->
37 <dependency>
38 <groupId>eu.mulk.jgvariant</groupId>
39 <artifactId>jgvariant-core</artifactId>
Matthias Andreas Benkarde14bd1b2021-12-30 21:11:22 +010040 <version>0.1.6-SNAPSHOT</version>
Matthias Andreas Benkard4e8423d2021-12-19 22:56:09 +010041 </dependency>
42
43 <!-- Annotations -->
44 <dependency>
45 <groupId>com.google.errorprone</groupId>
46 <artifactId>error_prone_annotations</artifactId>
47 </dependency>
48 <dependency>
49 <groupId>org.jetbrains</groupId>
50 <artifactId>annotations</artifactId>
51 </dependency>
52 <dependency>
53 <groupId>org.apiguardian</groupId>
54 <artifactId>apiguardian-api</artifactId>
55 </dependency>
56
Matthias Andreas Benkard50a626d2021-12-30 19:13:49 +010057 <!-- OSTree compression support -->
58 <dependency>
59 <groupId>org.tukaani</groupId>
60 <artifactId>xz</artifactId>
61 </dependency>
62
Matthias Andreas Benkard4e8423d2021-12-19 22:56:09 +010063 <!-- Testing -->
64 <dependency>
65 <groupId>org.junit.jupiter</groupId>
66 <artifactId>junit-jupiter-engine</artifactId>
67 <scope>test</scope>
68 </dependency>
69 <dependency>
70 <groupId>org.junit.jupiter</groupId>
71 <artifactId>junit-jupiter-api</artifactId>
72 <scope>test</scope>
73 </dependency>
74 <dependency>
75 <groupId>io.hosuaby</groupId>
76 <artifactId>inject-resources-junit-jupiter</artifactId>
77 <scope>test</scope>
78 </dependency>
79 </dependencies>
80
81</project>