microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
8d88dfc64891b1a877ddaeeab104d9e94119e6f4

Branches

Tags

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

Clone

HTTPS

Download ZIP

sample/pom.xml

85lines · 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.4-SNAPSHOT</version>
9 <relativePath>../</relativePath>
10 </parent>
11
12 <artifactId>gctoolkit-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>gctoolkit-api</artifactId>
22 </dependency>
23 <dependency>
24 <groupId>com.microsoft.gctoolkit</groupId>
25 <artifactId>gctoolkit-vertx</artifactId>
26 </dependency>
27
28 <dependency>
29 <groupId>org.junit.jupiter</groupId>
30 <artifactId>junit-jupiter-api</artifactId>
31 <scope>test</scope>
32 </dependency>
33 <dependency>
34 <groupId>org.junit.jupiter</groupId>
35 <artifactId>junit-jupiter-engine</artifactId>
36 <scope>test</scope>
37 </dependency>
38 </dependencies>
39
40 <build>
41 <plugins>
42 <plugin>
43 <groupId>org.apache.maven.plugins</groupId>
44 <artifactId>maven-deploy-plugin</artifactId>
45 <configuration>
46 <skip>true</skip>
47 </configuration>
48 </plugin>
49 <plugin>
50 <groupId>org.apache.maven.plugins</groupId>
51 <artifactId>maven-surefire-plugin</artifactId>
52 <configuration>
53 <systemProperties>
54 <property>
55 <name>gcLogFile</name>
56 <value>${gcLogFile}</value>
57 </property>
58 </systemProperties>
59 </configuration>
60 </plugin>
61 <plugin>
62 <artifactId>maven-dependency-plugin</artifactId>
63 <configuration>
64 <outputDirectory>${project.build.directory}/lib</outputDirectory>
65 </configuration>
66 </plugin>
67 <plugin>
68 <groupId>org.codehaus.mojo</groupId>
69 <artifactId>exec-maven-plugin</artifactId>
70 <configuration>
71 <executable>java</executable>
72 <arguments>
73 <argument>--module-path</argument>
74 <!-- Create the modulepath using all project dependencies and project build directory -->
75 <modulepath/>
76 <argument>--module</argument>
77 <argument>com.microsoft.gctoolkit.sample/com.microsoft.gctoolkit.sample.Main</argument>
78 <argument>${gcLogFile}</argument>
79 </arguments>
80 </configuration>
81 </plugin>
82 </plugins>
83 </build>
84
85</project>
86