microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
gctoolkit-2.0.6

Branches

Tags

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

Clone

HTTPS

Download ZIP

IT/pom.xml

100lines · 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.6</version>
9 <relativePath>../pom.xml</relativePath>
10 </parent>
11
12 <artifactId>gctoolkit-integration</artifactId>
13 <description>Integration tests for GCToolKit</description>
14 <url>${project.parent.url}</url>
15 <name>GCToolKit Integration</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 <dependency>
45 <groupId>com.microsoft.gctoolkit</groupId>
46 <artifactId>gctoolkit-sample</artifactId>
47 <version>2.0.6</version>
48 <scope>test</scope>
49 </dependency>
50 </dependencies>
51
52 <build>
53 <plugins>
54 <plugin>
55 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-deploy-plugin</artifactId>
57 <configuration>
58 <skip>true</skip>
59 </configuration>
60 </plugin>
61 <plugin>
62 <groupId>org.apache.maven.plugins</groupId>
63 <artifactId>maven-surefire-plugin</artifactId>
64 <configuration>
65 <useModulePath>true</useModulePath>
66 <!-- todo: Hack to deal with surefire deficiency -->
67 <argLine>--add-modules=ALL-MODULE-PATH</argLine>
68 <systemProperties>
69 <property>
70 <name>gcLogFile</name>
71 <value>${gcLogFile}</value>
72 </property>
73 </systemProperties>
74 </configuration>
75 </plugin>
76 <plugin>
77 <artifactId>maven-dependency-plugin</artifactId>
78 <configuration>
79 <outputDirectory>${project.build.directory}/lib</outputDirectory>
80 </configuration>
81 </plugin>
82 <plugin>
83 <groupId>org.codehaus.mojo</groupId>
84 <artifactId>exec-maven-plugin</artifactId>
85 <configuration>
86 <executable>java</executable>
87 <arguments>
88 <argument>- -module-path</argument>
89 <!-- Create the modulepath using all project dependencies and project build directory -->
90 <modulepath />
91 <argument>- -module</argument>
92 <argument>com.microsoft.gctoolkit.sample/com.microsoft.gctoolkit.sample.Main</argument>
93 <argument>${gcLogFile}</argument>
94 </arguments>
95 </configuration>
96 </plugin>
97 </plugins>
98 </build>
99
100</project>
101