microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
gctoolkit-2.0.9

Branches

Tags

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

Clone

HTTPS

Download ZIP

sample/pom.xml

87lines · 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>
3ff2e8d9GitHub Actions4 years ago8<version>2.0.9</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>
26<dependency>
5509b357Kirk Pepperdine4 years ago27<groupId>com.microsoft.gctoolkit</groupId>
ca43cad5Kirk Pepperdine4 years ago28<artifactId>gctoolkit-vertx</artifactId>
5188e3fdKirk Pepperdine4 years ago29</dependency>
943638b4kabutz4 years ago30<dependency>
31<groupId>org.junit.jupiter</groupId>
32<artifactId>junit-jupiter-api</artifactId>
8d88dfc6Bruno Borges4 years ago33<scope>test</scope>
943638b4kabutz4 years ago34</dependency>
35<dependency>
36<groupId>org.junit.jupiter</groupId>
37<artifactId>junit-jupiter-engine</artifactId>
8d88dfc6Bruno Borges4 years ago38<scope>test</scope>
943638b4kabutz4 years ago39</dependency>
5188e3fdKirk Pepperdine4 years ago40</dependencies>
41
8acf7744Martijn Verburg4 years ago42<build>
43<plugins>
8d88dfc6Bruno Borges4 years ago44<plugin>
45<groupId>org.apache.maven.plugins</groupId>
46<artifactId>maven-deploy-plugin</artifactId>
47<configuration>
48<skip>true</skip>
49</configuration>
50</plugin>
51<plugin>
52<groupId>org.apache.maven.plugins</groupId>
53<artifactId>maven-surefire-plugin</artifactId>
54<configuration>
55<systemProperties>
56<property>
57<name>gcLogFile</name>
58<value>${gcLogFile}</value>
59</property>
60</systemProperties>
61</configuration>
62</plugin>
8acf7744Martijn Verburg4 years ago63<plugin>
64<artifactId>maven-dependency-plugin</artifactId>
65<configuration>
66<outputDirectory>${project.build.directory}/lib</outputDirectory>
67</configuration>
68</plugin>
69<plugin>
70<groupId>org.codehaus.mojo</groupId>
71<artifactId>exec-maven-plugin</artifactId>
72<configuration>
73<executable>java</executable>
74<arguments>
75<argument>--module-path</argument>
76<!-- Create the modulepath using all project dependencies and project build directory -->
98e4771dGitHub Actions4 years ago77<modulepath />
8acf7744Martijn Verburg4 years ago78<argument>--module</argument>
aa986897Christian Stein4 years ago79<argument>com.microsoft.gctoolkit.sample/com.microsoft.gctoolkit.sample.Main</argument>
8acf7744Martijn Verburg4 years ago80<argument>${gcLogFile}</argument>
81</arguments>
82</configuration>
83</plugin>
84</plugins>
85</build>
86
5188e3fdKirk Pepperdine4 years ago87</project>