microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
gctoolkit-2.0.3

Branches

Tags

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

Clone

HTTPS

Download ZIP

sample/pom.xml

57lines · 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>
5188e3fdKirk Pepperdine4 years ago8<version>2.0.1-SNAPSHOT</version>
9</parent>
10
ca43cad5Kirk Pepperdine4 years ago11<artifactId>gctoolkit-sample</artifactId>
5188e3fdKirk Pepperdine4 years ago12
8acf7744Martijn Verburg4 years ago13<properties>
14<gcLogFile>../gclogs/preunified/cms/defnew/details/defnew.log</gcLogFile>
15</properties>
16
5188e3fdKirk Pepperdine4 years ago17<dependencies>
18<dependency>
5509b357Kirk Pepperdine4 years ago19<groupId>com.microsoft.gctoolkit</groupId>
ca43cad5Kirk Pepperdine4 years ago20<artifactId>gctoolkit-api</artifactId>
21<version>${project.version}</version>
5188e3fdKirk Pepperdine4 years ago22</dependency>
23<dependency>
5509b357Kirk Pepperdine4 years ago24<groupId>com.microsoft.gctoolkit</groupId>
ca43cad5Kirk Pepperdine4 years ago25<artifactId>gctoolkit-vertx</artifactId>
26<version>${project.version}</version>
5188e3fdKirk Pepperdine4 years ago27</dependency>
28</dependencies>
29
8acf7744Martijn Verburg4 years ago30<build>
31<plugins>
32<plugin>
33<artifactId>maven-dependency-plugin</artifactId>
34<configuration>
35<outputDirectory>${project.build.directory}/lib</outputDirectory>
36</configuration>
37</plugin>
38<plugin>
39<groupId>org.codehaus.mojo</groupId>
40<artifactId>exec-maven-plugin</artifactId>
41<version>3.0.0</version>
42<configuration>
43<executable>java</executable>
44<arguments>
45<argument>--module-path</argument>
46<!-- Create the modulepath using all project dependencies and project build directory -->
47<modulepath/>
48<argument>--module</argument>
aa986897Christian Stein4 years ago49<argument>com.microsoft.gctoolkit.sample/com.microsoft.gctoolkit.sample.Main</argument>
8acf7744Martijn Verburg4 years ago50<argument>${gcLogFile}</argument>
51</arguments>
52</configuration>
53</plugin>
54</plugins>
55</build>
56
5188e3fdKirk Pepperdine4 years ago57</project>