Matthias Andreas Benkard | 796b19d | 2021-12-18 23:38:46 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
Matthias Andreas Benkard | b5d657a | 2022-02-03 21:14:30 +0100 | [diff] [blame] | 2 | |
| 3 | <!-- |
| 4 | SPDX-FileCopyrightText: © 2021 Matthias Andreas Benkard <code@mail.matthias.benkard.de> |
| 5 | |
| 6 | SPDX-License-Identifier: LGPL-3.0-or-later |
| 7 | --> |
| 8 | |
Matthias Andreas Benkard | 796b19d | 2021-12-18 23:38:46 +0100 | [diff] [blame] | 9 | <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 Benkard | e14bd1b | 2021-12-30 21:11:22 +0100 | [diff] [blame] | 16 | <version>0.1.6-SNAPSHOT</version> |
Matthias Andreas Benkard | 796b19d | 2021-12-18 23:38:46 +0100 | [diff] [blame] | 17 | |
| 18 | <artifactId>jgvariant-core</artifactId> |
| 19 | <packaging>jar</packaging> |
| 20 | |
| 21 | <name>JGVariant Core</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 Benkard | e14bd1b | 2021-12-30 21:11:22 +0100 | [diff] [blame] | 31 | <version>0.1.6-SNAPSHOT</version> |
Matthias Andreas Benkard | 796b19d | 2021-12-18 23:38:46 +0100 | [diff] [blame] | 32 | <relativePath>../jgvariant-parent/pom.xml</relativePath> |
| 33 | </parent> |
| 34 | |
| 35 | <dependencies> |
| 36 | <!-- Annotations --> |
| 37 | <dependency> |
| 38 | <groupId>com.google.errorprone</groupId> |
| 39 | <artifactId>error_prone_annotations</artifactId> |
| 40 | </dependency> |
| 41 | <dependency> |
| 42 | <groupId>org.jetbrains</groupId> |
| 43 | <artifactId>annotations</artifactId> |
| 44 | </dependency> |
| 45 | <dependency> |
| 46 | <groupId>org.apiguardian</groupId> |
| 47 | <artifactId>apiguardian-api</artifactId> |
| 48 | </dependency> |
| 49 | |
| 50 | <!-- Testing --> |
| 51 | <dependency> |
| 52 | <groupId>org.junit.jupiter</groupId> |
| 53 | <artifactId>junit-jupiter-engine</artifactId> |
| 54 | <scope>test</scope> |
| 55 | </dependency> |
| 56 | <dependency> |
| 57 | <groupId>org.junit.jupiter</groupId> |
| 58 | <artifactId>junit-jupiter-api</artifactId> |
| 59 | <scope>test</scope> |
| 60 | </dependency> |
| 61 | </dependencies> |
| 62 | |
| 63 | </project> |