microsoft/gctoolkit

Public

mirrored fromhttps://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 · 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>3.0.1</version>
9 <relativePath>../pom.xml</relativePath>
10 </parent>
11
12 <artifactId>gctoolkit-sample</artifactId>
13 <description>Sample application for GCToolKit usage</description>
14 <url>${project.parent.url}</url>
15 <name>GCToolKit Sample</name>
16 <properties>
17 <gcLogFile>../gclogs/preunified/cms/defnew/details/defnew.log</gcLogFile>
18 </properties>
19
20
21 <dependencies>
22 <dependency>
23 <groupId>com.microsoft.gctoolkit</groupId>
24 <artifactId>gctoolkit-api</artifactId>
25 </dependency>
26 <dependency>
27 <groupId>com.microsoft.gctoolkit</groupId>
28 <artifactId>gctoolkit-parser</artifactId>
29 </dependency>
30 <dependency>
31 <groupId>com.microsoft.gctoolkit</groupId>
32 <artifactId>gctoolkit-vertx</artifactId>
33 </dependency>
34 <dependency>
35 <groupId>org.junit.jupiter</groupId>
36 <artifactId>junit-jupiter-api</artifactId>
37 <scope>test</scope>
38 </dependency>
39 <dependency>
40 <groupId>org.junit.jupiter</groupId>
41 <artifactId>junit-jupiter-engine</artifactId>
42 <scope>test</scope>
43 </dependency>
44 </dependencies>
45
46 <build>
47 <plugins>
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>
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 -->
81 <modulepath />
82 <argument>--module</argument>
83 <argument>com.microsoft.gctoolkit.sample/com.microsoft.gctoolkit.sample.Main</argument>
84 <argument>${gcLogFile}</argument>
85 </arguments>
86 </configuration>
87 </plugin>
88 </plugins>
89 </build>
90
91</project>
92