microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
gctoolkit-3.0.0

Branches

Tags

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

Clone

HTTPS

Download ZIP

IT/pom.xml

94lines · 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.0</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 </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 <useModulePath>true</useModulePath>
60 <!-- todo: Hack to deal with surefire deficiency -->
61 <argLine>--add-modules=ALL-MODULE-PATH</argLine>
62 <systemProperties>
63 <property>
64 <name>gcLogFile</name>
65 <value>${gcLogFile}</value>
66 </property>
67 </systemProperties>
68 </configuration>
69 </plugin>
70 <plugin>
71 <artifactId>maven-dependency-plugin</artifactId>
72 <configuration>
73 <outputDirectory>${project.build.directory}/lib</outputDirectory>
74 </configuration>
75 </plugin>
76 <plugin>
77 <groupId>org.codehaus.mojo</groupId>
78 <artifactId>exec-maven-plugin</artifactId>
79 <configuration>
80 <executable>java</executable>
81 <arguments>
82 <argument>- -module-path</argument>
83 <!-- Create the modulepath using all project dependencies and project build directory -->
84 <modulepath />
85 <argument>- -module</argument>
86 <argument>com.microsoft.gctoolkit.sample/com.microsoft.gctoolkit.sample.Main</argument>
87 <argument>${gcLogFile}</argument>
88 </arguments>
89 </configuration>
90 </plugin>
91 </plugins>
92 </build>
93
94</project>
95