Matthias Andreas Benkard | 796b19d | 2021-12-18 23:38:46 +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 | |
| 9 | <version>0.1.4-SNAPSHOT</version> |
| 10 | |
| 11 | <artifactId>jgvariant-core</artifactId> |
| 12 | <packaging>jar</packaging> |
| 13 | |
| 14 | <name>JGVariant Core</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> |
| 24 | <version>0.1.4-SNAPSHOT</version> |
| 25 | <relativePath>../jgvariant-parent/pom.xml</relativePath> |
| 26 | </parent> |
| 27 | |
| 28 | <dependencies> |
| 29 | <!-- Annotations --> |
| 30 | <dependency> |
| 31 | <groupId>com.google.errorprone</groupId> |
| 32 | <artifactId>error_prone_annotations</artifactId> |
| 33 | </dependency> |
| 34 | <dependency> |
| 35 | <groupId>org.jetbrains</groupId> |
| 36 | <artifactId>annotations</artifactId> |
| 37 | </dependency> |
| 38 | <dependency> |
| 39 | <groupId>org.apiguardian</groupId> |
| 40 | <artifactId>apiguardian-api</artifactId> |
| 41 | </dependency> |
| 42 | |
| 43 | <!-- Testing --> |
| 44 | <dependency> |
| 45 | <groupId>org.junit.jupiter</groupId> |
| 46 | <artifactId>junit-jupiter-engine</artifactId> |
| 47 | <scope>test</scope> |
| 48 | </dependency> |
| 49 | <dependency> |
| 50 | <groupId>org.junit.jupiter</groupId> |
| 51 | <artifactId>junit-jupiter-api</artifactId> |
| 52 | <scope>test</scope> |
| 53 | </dependency> |
| 54 | </dependencies> |
| 55 | |
| 56 | </project> |