microsoft/gctoolkit

Public

mirrored fromhttps://github.com/microsoft/gctoolkitAvailable

CodeCommitsIssuesPull requestsActionsInsightsSecurity
4bca04f97c1fa4342007f4ef8ec9f5ad1d2cb46f

Branches

Tags

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

Clone

HTTPS

Download ZIP

sample/pom.xml

58lines · 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>2.0.1-SNAPSHOT</version>
9 <relativePath>../pom.xml</relativePath>
10 </parent>
11
12 <artifactId>sample</artifactId>
13
14 <properties>
15 <gcLogFile>../gclogs/preunified/cms/defnew/details/defnew.log</gcLogFile>
16 </properties>
17
18 <dependencies>
19 <dependency>
20 <groupId>com.microsoft.gctoolkit</groupId>
21 <artifactId>api</artifactId>
22 <version>${project.parent.version}</version>
23 </dependency>
24 <dependency>
25 <groupId>com.microsoft.gctoolkit</groupId>
26 <artifactId>vertx</artifactId>
27 <version>${project.parent.version}</version>
28 </dependency>
29 </dependencies>
30
31 <build>
32 <plugins>
33 <plugin>
34 <artifactId>maven-dependency-plugin</artifactId>
35 <configuration>
36 <outputDirectory>${project.build.directory}/lib</outputDirectory>
37 </configuration>
38 </plugin>
39 <plugin>
40 <groupId>org.codehaus.mojo</groupId>
41 <artifactId>exec-maven-plugin</artifactId>
42 <version>3.0.0</version>
43 <configuration>
44 <executable>java</executable>
45 <arguments>
46 <argument>--module-path</argument>
47 <!-- Create the modulepath using all project dependencies and project build directory -->
48 <modulepath/>
49 <argument>--module</argument>
50 <argument>gctoolkit.sample/com.microsoft.gctoolkit.sample.Main</argument>
51 <argument>${gcLogFile}</argument>
52 </arguments>
53 </configuration>
54 </plugin>
55 </plugins>
56 </build>
57
58</project>