microsoft/gctoolkit

Public

mirrored from https://github.com/microsoft/gctoolkitAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
gctoolkit-3.0.1

Branches

Tags

  • No tags available.
0Branches0Tags
Go to file
Add file
Code

Clone

HTTPS

Download ZIP

sample/pom.xml

91lines · modeblame

5188e3fdKirk Pepperdine4 years ago1<?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 ago6<groupId>com.microsoft.gctoolkit</groupId>
e5a6726fDavid Grieve4 years ago7<artifactId>gctoolkit</artifactId>
b611f6ecGitHub Actions3 years ago8<version>3.0.1</version>
e76efc85David Grieve4 years ago9<relativePath>../pom.xml</relativePath>
5188e3fdKirk Pepperdine4 years ago10</parent>
11
ca43cad5Kirk Pepperdine4 years ago12<artifactId>gctoolkit-sample</artifactId>
f98e7f7aAnant Kurapati4 years ago13<description>Sample application for GCToolKit usage</description>
14<url>${project.parent.url}</url>
15<name>GCToolKit Sample</name>
8acf7744Martijn Verburg4 years ago16<properties>
17<gcLogFile>../gclogs/preunified/cms/defnew/details/defnew.log</gcLogFile>
8d88dfc6Bruno Borges4 years ago18</properties>
8acf7744Martijn Verburg4 years ago19
32502528kabutz4 years ago20
5188e3fdKirk Pepperdine4 years ago21<dependencies>
22<dependency>
5509b357Kirk Pepperdine4 years ago23<groupId>com.microsoft.gctoolkit</groupId>
ca43cad5Kirk Pepperdine4 years ago24<artifactId>gctoolkit-api</artifactId>
5188e3fdKirk Pepperdine4 years ago25</dependency>
e74e68d3Kirk Pepperdine3 years ago26<dependency>
27<groupId>com.microsoft.gctoolkit</groupId>
28<artifactId>gctoolkit-parser</artifactId>
29</dependency>
5188e3fdKirk Pepperdine4 years ago30<dependency>
5509b357Kirk Pepperdine4 years ago31<groupId>com.microsoft.gctoolkit</groupId>
ca43cad5Kirk Pepperdine4 years ago32<artifactId>gctoolkit-vertx</artifactId>
5188e3fdKirk Pepperdine4 years ago33</dependency>
943638b4kabutz4 years ago34<dependency>
35<groupId>org.junit.jupiter</groupId>
36<artifactId>junit-jupiter-api</artifactId>
8d88dfc6Bruno Borges4 years ago37<scope>test</scope>
943638b4kabutz4 years ago38</dependency>
39<dependency>
40<groupId>org.junit.jupiter</groupId>
41<artifactId>junit-jupiter-engine</artifactId>
8d88dfc6Bruno Borges4 years ago42<scope>test</scope>
943638b4kabutz4 years ago43</dependency>
5188e3fdKirk Pepperdine4 years ago44</dependencies>
45
8acf7744Martijn Verburg4 years ago46<build>
47<plugins>
8d88dfc6Bruno Borges4 years ago48<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 ago67<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 ago81<modulepath />
8acf7744Martijn Verburg4 years ago82<argument>--module</argument>
aa986897Christian Stein4 years ago83<argument>com.microsoft.gctoolkit.sample/com.microsoft.gctoolkit.sample.Main</argument>
8acf7744Martijn Verburg4 years ago84<argument>${gcLogFile}</argument>
85</arguments>
86</configuration>
87</plugin>
88</plugins>
89</build>
90
5188e3fdKirk Pepperdine4 years ago91</project>