microsoft/gctoolkit
Publicmirrored fromhttps://github.com/microsoft/gctoolkitAvailable
parser/pom.xml
57lines · modecode
| 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> |
| 6 | <groupId>com.microsoft.gctoolkit</groupId> |
| 7 | <artifactId>gctoolkit</artifactId> |
| 8 | <version>3.7.0-SNAPSHOT</version> |
| 9 | <relativePath>../pom.xml</relativePath> |
| 10 | </parent> |
| 11 | |
| 12 | <artifactId>gctoolkit-parser</artifactId> |
| 13 | <name>GCToolKit Parser</name> |
| 14 | <description>Parser module required for GC log analysis.</description> |
| 15 | <url>${project.parent.url}</url> |
| 16 | <dependencies> |
| 17 | <dependency> |
| 18 | <groupId>com.microsoft.gctoolkit</groupId> |
| 19 | <artifactId>gctoolkit-api</artifactId> |
| 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 | |
| 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> |
| 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 --> |
| 44 | </configuration> |
| 45 | </plugin> |
| 46 | <plugin> |
| 47 | <groupId>org.apache.maven.plugins</groupId> |
| 48 | <artifactId>maven-javadoc-plugin</artifactId> |
| 49 | <configuration> |
| 50 | <show>public</show> |
| 51 | <sourceFileIncludes>**/package-info.java,**/GCLogParser.java</sourceFileIncludes> |
| 52 | </configuration> |
| 53 | </plugin> |
| 54 | </plugins> |
| 55 | </build> |
| 56 | |
| 57 | </project> |
| 58 | |