microsoft/gctoolkit
Publicmirrored from https://github.com/microsoft/gctoolkitAvailable
api/pom.xml
29lines · modeblame
3ce8e8bbKirk Pepperdine4 years ago | 1 | <?xml version="1.0" encoding="UTF-8"?> |
98e4771dGitHub Actions4 years ago | 2 | <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> |
3ce8e8bbKirk Pepperdine4 years ago | 3 | <modelVersion>4.0.0</modelVersion> |
| 4 | | |
| 5 | <parent> | |
5509b357Kirk Pepperdine4 years ago | 6 | <groupId>com.microsoft.gctoolkit</groupId> |
8d88dfc6Bruno Borges4 years ago | 7 | <artifactId>gctoolkit</artifactId> |
b84ca276GitHub Actions4 years ago | 8 | <version>2.0.5</version> |
3ce8e8bbKirk Pepperdine4 years ago | 9 | <relativePath>../pom.xml</relativePath> |
| 10 | </parent> | |
| 11 | | |
ca43cad5Kirk Pepperdine4 years ago | 12 | <artifactId>gctoolkit-api</artifactId> |
f98e7f7aAnant Kurapati4 years ago | 13 | <name>GCToolKit API</name> |
| 14 | <description>Model APIs for aggregator, events, inputs.</description> | |
| 15 | <url>${project.parent.url}</url> | |
3ce8e8bbKirk Pepperdine4 years ago | 16 | |
| 17 | <dependencies> | |
| 18 | <dependency> | |
| 19 | <groupId>org.junit.jupiter</groupId> | |
| 20 | <artifactId>junit-jupiter-api</artifactId> | |
| 21 | <scope>test</scope> | |
| 22 | </dependency> | |
| 23 | <dependency> | |
| 24 | <groupId>org.junit.jupiter</groupId> | |
| 25 | <artifactId>junit-jupiter-engine</artifactId> | |
| 26 | <scope>test</scope> | |
| 27 | </dependency> | |
| 28 | </dependencies> | |
f98e7f7aAnant Kurapati4 years ago | 29 | </project> |