microsoft/gctoolkit
Publicmirrored from https://github.com/microsoft/gctoolkitAvailable
sample/pom.xml
91lines · modeblame
5188e3fdKirk 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> |
e5a6726fDavid Grieve4 years ago | 7 | <artifactId>gctoolkit</artifactId> |
b611f6ecGitHub Actions3 years ago | 8 | <version>3.0.1</version> |
e76efc85David Grieve4 years ago | 9 | <relativePath>../pom.xml</relativePath> |
5188e3fdKirk Pepperdine4 years ago | 10 | </parent> |
| 11 | | |
ca43cad5Kirk Pepperdine4 years ago | 12 | <artifactId>gctoolkit-sample</artifactId> |
f98e7f7aAnant Kurapati4 years ago | 13 | <description>Sample application for GCToolKit usage</description> |
| 14 | <url>${project.parent.url}</url> | |
| 15 | <name>GCToolKit Sample</name> | |
8acf7744Martijn Verburg4 years ago | 16 | <properties> |
| 17 | <gcLogFile>../gclogs/preunified/cms/defnew/details/defnew.log</gcLogFile> | |
8d88dfc6Bruno Borges4 years ago | 18 | </properties> |
8acf7744Martijn Verburg4 years ago | 19 | |
32502528kabutz4 years ago | 20 | |
5188e3fdKirk Pepperdine4 years ago | 21 | <dependencies> |
| 22 | <dependency> | |
5509b357Kirk Pepperdine4 years ago | 23 | <groupId>com.microsoft.gctoolkit</groupId> |
ca43cad5Kirk Pepperdine4 years ago | 24 | <artifactId>gctoolkit-api</artifactId> |
5188e3fdKirk Pepperdine4 years ago | 25 | </dependency> |
e74e68d3Kirk Pepperdine3 years ago | 26 | <dependency> |
| 27 | <groupId>com.microsoft.gctoolkit</groupId> | |
| 28 | <artifactId>gctoolkit-parser</artifactId> | |
| 29 | </dependency> | |
5188e3fdKirk Pepperdine4 years ago | 30 | <dependency> |
5509b357Kirk Pepperdine4 years ago | 31 | <groupId>com.microsoft.gctoolkit</groupId> |
ca43cad5Kirk Pepperdine4 years ago | 32 | <artifactId>gctoolkit-vertx</artifactId> |
5188e3fdKirk Pepperdine4 years ago | 33 | </dependency> |
943638b4kabutz4 years ago | 34 | <dependency> |
| 35 | <groupId>org.junit.jupiter</groupId> | |
| 36 | <artifactId>junit-jupiter-api</artifactId> | |
8d88dfc6Bruno Borges4 years ago | 37 | <scope>test</scope> |
943638b4kabutz4 years ago | 38 | </dependency> |
| 39 | <dependency> | |
| 40 | <groupId>org.junit.jupiter</groupId> | |
| 41 | <artifactId>junit-jupiter-engine</artifactId> | |
8d88dfc6Bruno Borges4 years ago | 42 | <scope>test</scope> |
943638b4kabutz4 years ago | 43 | </dependency> |
5188e3fdKirk Pepperdine4 years ago | 44 | </dependencies> |
| 45 | | |
8acf7744Martijn Verburg4 years ago | 46 | <build> |
| 47 | <plugins> | |
8d88dfc6Bruno Borges4 years ago | 48 | <plugin> |
| 49 | <groupId>org.apache.maven.plugins</groupId> | |
| 50 | <artifactId>maven-deploy-plugin</artifactId> | |
| 51 | <configuration> | |
| 52 | <skip>true</skip> | |
| 53 | </configuration> | |
| 54 | </plugin> | |
| 55 | <plugin> | |
| 56 | <groupId>org.apache.maven.plugins</groupId> | |
| 57 | <artifactId>maven-surefire-plugin</artifactId> | |
| 58 | <configuration> | |
| 59 | <systemProperties> | |
| 60 | <property> | |
| 61 | <name>gcLogFile</name> | |
| 62 | <value>${gcLogFile}</value> | |
| 63 | </property> | |
| 64 | </systemProperties> | |
| 65 | </configuration> | |
| 66 | </plugin> | |
8acf7744Martijn Verburg4 years ago | 67 | <plugin> |
| 68 | <artifactId>maven-dependency-plugin</artifactId> | |
| 69 | <configuration> | |
| 70 | <outputDirectory>${project.build.directory}/lib</outputDirectory> | |
| 71 | </configuration> | |
| 72 | </plugin> | |
| 73 | <plugin> | |
| 74 | <groupId>org.codehaus.mojo</groupId> | |
| 75 | <artifactId>exec-maven-plugin</artifactId> | |
| 76 | <configuration> | |
| 77 | <executable>java</executable> | |
| 78 | <arguments> | |
| 79 | <argument>--module-path</argument> | |
| 80 | <!-- Create the modulepath using all project dependencies and project build directory --> | |
98e4771dGitHub Actions4 years ago | 81 | <modulepath /> |
8acf7744Martijn Verburg4 years ago | 82 | <argument>--module</argument> |
aa986897Christian Stein4 years ago | 83 | <argument>com.microsoft.gctoolkit.sample/com.microsoft.gctoolkit.sample.Main</argument> |
8acf7744Martijn Verburg4 years ago | 84 | <argument>${gcLogFile}</argument> |
| 85 | </arguments> | |
| 86 | </configuration> | |
| 87 | </plugin> | |
| 88 | </plugins> | |
| 89 | </build> | |
| 90 | | |
5188e3fdKirk Pepperdine4 years ago | 91 | </project> |