microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
gctoolkit-2.0.7

Branches

Tags

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

Clone

HTTPS

Download ZIP

sample/pom.xml

87lines · 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.7</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-vertx</artifactId>
29 </dependency>
30 <dependency>
31 <groupId>org.junit.jupiter</groupId>
32 <artifactId>junit-jupiter-api</artifactId>
33 <scope>test</scope>
34 </dependency>
35 <dependency>
36 <groupId>org.junit.jupiter</groupId>
37 <artifactId>junit-jupiter-engine</artifactId>
38 <scope>test</scope>
39 </dependency>
40 </dependencies>
41
42 <build>
43 <plugins>
44 <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>
63 <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 -->
77 <modulepath />
78 <argument>--module</argument>
79 <argument>com.microsoft.gctoolkit.sample/com.microsoft.gctoolkit.sample.Main</argument>
80 <argument>${gcLogFile}</argument>
81 </arguments>
82 </configuration>
83 </plugin>
84 </plugins>
85 </build>
86
87</project>
88