microsoft/gctoolkit
Publicmirrored from https://github.com/microsoft/gctoolkitAvailable
core/api/pom.xml
26lines · modeblame
3ce8e8bbKirk Pepperdine4 years ago | 1 | <?xml version="1.0" encoding="UTF-8"?> |
| 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"> | |
| 3 | <modelVersion>4.0.0</modelVersion> | |
| 4 | | |
| 5 | <parent> | |
5509b357Kirk Pepperdine4 years ago | 6 | <groupId>com.microsoft.gctoolkit</groupId> |
ca43cad5Kirk Pepperdine4 years ago | 7 | <artifactId>gctoolkit-core</artifactId> |
3f4f91e0GitHub Actions4 years ago | 8 | <version>2.0.3</version> |
3ce8e8bbKirk Pepperdine4 years ago | 9 | <relativePath>../pom.xml</relativePath> |
| 10 | </parent> | |
| 11 | | |
ca43cad5Kirk Pepperdine4 years ago | 12 | <artifactId>gctoolkit-api</artifactId> |
3ce8e8bbKirk Pepperdine4 years ago | 13 | |
| 14 | <dependencies> | |
| 15 | <dependency> | |
| 16 | <groupId>org.junit.jupiter</groupId> | |
| 17 | <artifactId>junit-jupiter-api</artifactId> | |
| 18 | <scope>test</scope> | |
| 19 | </dependency> | |
| 20 | <dependency> | |
| 21 | <groupId>org.junit.jupiter</groupId> | |
| 22 | <artifactId>junit-jupiter-engine</artifactId> | |
| 23 | <scope>test</scope> | |
| 24 | </dependency> | |
| 25 | </dependencies> | |
| 26 | </project> |