Matthias Andreas Benkard | 4e8423d | 2021-12-19 22:56:09 +0100 | [diff] [blame] | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 2 | <project |
| 3 | xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" |
| 4 | xmlns="http://maven.apache.org/POM/4.0.0" |
| 5 | xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> |
| 6 | |
| 7 | <modelVersion>4.0.0</modelVersion> |
| 8 | |
Matthias Andreas Benkard | 484fc94 | 2021-12-28 01:43:03 +0100 | [diff] [blame^] | 9 | <version>0.1.4</version> |
Matthias Andreas Benkard | 4e8423d | 2021-12-19 22:56:09 +0100 | [diff] [blame] | 10 | |
| 11 | <artifactId>jgvariant-ostree</artifactId> |
| 12 | <packaging>jar</packaging> |
| 13 | |
| 14 | <name>JGVariant OSTree Parser</name> |
| 15 | <url>https://gerrit.benkard.de/plugins/gitiles/jgvariant</url> |
| 16 | |
| 17 | <description> |
| 18 | GVariant serialization and deserialization. |
| 19 | </description> |
| 20 | |
| 21 | <parent> |
| 22 | <groupId>eu.mulk.jgvariant</groupId> |
| 23 | <artifactId>jgvariant-parent</artifactId> |
Matthias Andreas Benkard | 484fc94 | 2021-12-28 01:43:03 +0100 | [diff] [blame^] | 24 | <version>0.1.4</version> |
Matthias Andreas Benkard | 4e8423d | 2021-12-19 22:56:09 +0100 | [diff] [blame] | 25 | <relativePath>../jgvariant-parent/pom.xml</relativePath> |
| 26 | </parent> |
| 27 | |
| 28 | <dependencies> |
| 29 | <!-- JGVariant --> |
| 30 | <dependency> |
| 31 | <groupId>eu.mulk.jgvariant</groupId> |
| 32 | <artifactId>jgvariant-core</artifactId> |
Matthias Andreas Benkard | 484fc94 | 2021-12-28 01:43:03 +0100 | [diff] [blame^] | 33 | <version>0.1.4</version> |
Matthias Andreas Benkard | 4e8423d | 2021-12-19 22:56:09 +0100 | [diff] [blame] | 34 | </dependency> |
| 35 | |
| 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 | <dependency> |
| 62 | <groupId>io.hosuaby</groupId> |
| 63 | <artifactId>inject-resources-junit-jupiter</artifactId> |
| 64 | <scope>test</scope> |
| 65 | </dependency> |
| 66 | </dependencies> |
| 67 | |
| 68 | </project> |