microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
gctoolkit-2.0.8

Branches

Tags

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

Clone

HTTPS

Download ZIP

gclogs/pom.xml

76lines · 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
4 <modelVersion>4.0.0</modelVersion>
5
6 <parent>
7 <groupId>com.microsoft.gctoolkit</groupId>
8 <artifactId>gctoolkit</artifactId>
9 <version>2.0.8</version>
10 <relativePath>../pom.xml</relativePath>
11 </parent>
12
13 <artifactId>gctoolkit-gclogs</artifactId>
14 <description>GCToolkit test gclogs downloader</description>
15 <url>${project.parent.url}</url>
16 <name>GCToolKit GCLogs</name>
17 <packaging>pom</packaging>
18
19 <properties>
20 <gctoolkit-testdata-version>1.0.5</gctoolkit-testdata-version>
21 </properties>
22
23 <build>
24 <plugins>
25 <plugin>
26 <groupId>org.apache.maven.plugins</groupId>
27 <artifactId>maven-deploy-plugin</artifactId>
28 <configuration>
29 <skip>true</skip>
30 </configuration>
31 </plugin>
32 <plugin>
33 <groupId>org.commonjava.maven.plugins</groupId>
34 <artifactId>directory-maven-plugin</artifactId>
35 <executions>
36 <execution>
37 <id>directories</id>
38 <goals>
39 <goal>directory-of</goal>
40 </goals>
41 <phase>initialize</phase>
42 <configuration>
43 <property>maven-parent.basedir</property>
44 <project>
45 <groupId>com.microsoft.gctoolkit</groupId>
46 <artifactId>gctoolkit</artifactId>
47 </project>
48 </configuration>
49 </execution>
50 </executions>
51 </plugin>
52 <plugin>
53 <groupId>org.apache.maven.plugins</groupId>
54 <artifactId>maven-antrun-plugin</artifactId>
55 <executions>
56 <execution>
57 <phase>process-test-resources</phase>
58 <goals>
59 <goal>run</goal>
60 </goals>
61 <configuration>
62 <target>
63 <property name="testdata-package" value="gctoolkit-testdata-${gctoolkit-testdata-version}.zip" />
64
65 <get skipexisting="true" src="https://github.com/microsoft/gctoolkit-testdata/releases/download/${gctoolkit-testdata-version}/${testdata-package}" dest="${maven-parent.basedir}" />
66
67 <unzip src="${maven-parent.basedir}/${testdata-package}" dest="${maven-parent.basedir}" overwrite="false" />
68 </target>
69 </configuration>
70 </execution>
71 </executions>
72 </plugin>
73 </plugins>
74 </build>
75
76</project>
77