microsoft/gctoolkit
Publicmirrored from https://github.com/microsoft/gctoolkitAvailable
parser/pom.xml
49lines · 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> |
8d88dfc6Bruno Borges4 years ago | 7 | <artifactId>gctoolkit</artifactId> |
8f0726cdGitHub Actions3 years ago | 8 | <version>3.0.0</version> |
3ce8e8bbKirk Pepperdine4 years ago | 9 | <relativePath>../pom.xml</relativePath> |
| 10 | </parent> | |
| 11 | | |
ca43cad5Kirk Pepperdine4 years ago | 12 | <artifactId>gctoolkit-parser</artifactId> |
f98e7f7aAnant Kurapati4 years ago | 13 | <name>GCToolKit Parser</name> |
| 14 | <description>Parser module required for GC log analysis.</description> | |
| 15 | <url>${project.parent.url}</url> | |
3ce8e8bbKirk Pepperdine4 years ago | 16 | <dependencies> |
| 17 | <dependency> | |
5509b357Kirk Pepperdine4 years ago | 18 | <groupId>com.microsoft.gctoolkit</groupId> |
ca43cad5Kirk Pepperdine4 years ago | 19 | <artifactId>gctoolkit-api</artifactId> |
3ce8e8bbKirk Pepperdine4 years ago | 20 | </dependency> |
| 21 | <dependency> | |
| 22 | <groupId>org.junit.jupiter</groupId> | |
| 23 | <artifactId>junit-jupiter-api</artifactId> | |
| 24 | <scope>test</scope> | |
| 25 | </dependency> | |
| 26 | <dependency> | |
| 27 | <groupId>org.junit.jupiter</groupId> | |
| 28 | <artifactId>junit-jupiter-engine</artifactId> | |
| 29 | <scope>test</scope> | |
| 30 | </dependency> | |
| 31 | </dependencies> | |
| 32 | | |
8d88dfc6Bruno Borges4 years ago | 33 | <build> |
| 34 | <plugins> | |
| 35 | <plugin> | |
| 36 | <groupId>org.apache.maven.plugins</groupId> | |
| 37 | <artifactId>maven-surefire-plugin</artifactId> | |
| 38 | <configuration> | |
| 39 | <parallel>classes</parallel> | |
| 40 | <perCoreThreadCount>true</perCoreThreadCount> | |
e74e68d3Kirk Pepperdine3 years ago | 41 | <!-- Martijn, leave this alone!!!! We sometimes use this because the parser tests take a long time |
| 42 | and always have to look this up every time it is needed. --> | |
| 43 | <!-- skipTests>true</skipTests --> | |
8d88dfc6Bruno Borges4 years ago | 44 | </configuration> |
| 45 | </plugin> | |
| 46 | </plugins> | |
| 47 | </build> | |
| 48 | | |
| 49 | </project> |