| <?xml version="1.0" encoding="UTF-8"?> |
| |
| <!-- |
| SPDX-FileCopyrightText: © 2021 Matthias Andreas Benkard <code@mail.matthias.benkard.de> |
| |
| SPDX-License-Identifier: LGPL-3.0-or-later |
| --> |
| |
| <project |
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" |
| xmlns="http://maven.apache.org/POM/4.0.0" |
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| |
| <modelVersion>4.0.0</modelVersion> |
| |
| <version>0.1.6-SNAPSHOT</version> |
| |
| <artifactId>jgvariant-ostree</artifactId> |
| <packaging>jar</packaging> |
| |
| <name>JGVariant OSTree Parser</name> |
| <url>https://gerrit.benkard.de/plugins/gitiles/jgvariant</url> |
| |
| <description> |
| GVariant serialization and deserialization. |
| </description> |
| |
| <parent> |
| <groupId>eu.mulk.jgvariant</groupId> |
| <artifactId>jgvariant-parent</artifactId> |
| <version>0.1.6-SNAPSHOT</version> |
| <relativePath>../jgvariant-parent/pom.xml</relativePath> |
| </parent> |
| |
| <dependencies> |
| <!-- JGVariant --> |
| <dependency> |
| <groupId>eu.mulk.jgvariant</groupId> |
| <artifactId>jgvariant-core</artifactId> |
| <version>0.1.6-SNAPSHOT</version> |
| </dependency> |
| |
| <!-- Annotations --> |
| <dependency> |
| <groupId>com.google.errorprone</groupId> |
| <artifactId>error_prone_annotations</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.jetbrains</groupId> |
| <artifactId>annotations</artifactId> |
| </dependency> |
| <dependency> |
| <groupId>org.apiguardian</groupId> |
| <artifactId>apiguardian-api</artifactId> |
| </dependency> |
| |
| <!-- OSTree compression support --> |
| <dependency> |
| <groupId>org.tukaani</groupId> |
| <artifactId>xz</artifactId> |
| </dependency> |
| |
| <!-- Static analysis --> |
| <dependency> |
| <groupId>org.checkerframework</groupId> |
| <artifactId>checker</artifactId> |
| <scope>provided</scope> |
| <optional>true</optional> |
| </dependency> |
| <dependency> |
| <groupId>org.checkerframework</groupId> |
| <artifactId>checker-qual</artifactId> |
| <scope>provided</scope> |
| <optional>true</optional> |
| </dependency> |
| |
| <!-- Testing --> |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter-engine</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>org.junit.jupiter</groupId> |
| <artifactId>junit-jupiter-api</artifactId> |
| <scope>test</scope> |
| </dependency> |
| <dependency> |
| <groupId>io.hosuaby</groupId> |
| <artifactId>inject-resources-junit-jupiter</artifactId> |
| <scope>test</scope> |
| </dependency> |
| </dependencies> |
| |
| </project> |