microsoft/gctoolkit

Public

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

CodeCommitsIssuesPull requestsActionsInsightsSecurity
13a5e62d8f798534b0bfc7c617a56fccef33524b

Branches

Tags

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

Clone

HTTPS

Download ZIP

gclogs/pom.xml

83lines · 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>3.7.0-SNAPSHOT</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.12</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.apache.maven.plugins</groupId>
34 <artifactId>maven-javadoc-plugin</artifactId>
35 <configuration>
36 <skip>true</skip>
37 </configuration>
38 </plugin>
39 <plugin>
40 <groupId>org.commonjava.maven.plugins</groupId>
41 <artifactId>directory-maven-plugin</artifactId>
42 <executions>
43 <execution>
44 <id>directories</id>
45 <goals>
46 <goal>directory-of</goal>
47 </goals>
48 <phase>initialize</phase>
49 <configuration>
50 <property>maven-parent.basedir</property>
51 <project>
52 <groupId>com.microsoft.gctoolkit</groupId>
53 <artifactId>gctoolkit</artifactId>
54 </project>
55 </configuration>
56 </execution>
57 </executions>
58 </plugin>
59 <plugin>
60 <groupId>org.apache.maven.plugins</groupId>
61 <artifactId>maven-antrun-plugin</artifactId>
62 <executions>
63 <execution>
64 <phase>process-test-resources</phase>
65 <goals>
66 <goal>run</goal>
67 </goals>
68 <configuration>
69 <target>
70 <property name="testdata-package" value="gctoolkit-testdata-${gctoolkit-testdata-version}.zip" />
71
72 <get skipexisting="true" src="https://github.com/microsoft/gctoolkit-testdata/releases/download/${gctoolkit-testdata-version}/${testdata-package}" dest="${maven-parent.basedir}" />
73
74 <unzip src="${maven-parent.basedir}/${testdata-package}" dest="${maven-parent.basedir}" overwrite="false" />
75 </target>
76 </configuration>
77 </execution>
78 </executions>
79 </plugin>
80 </plugins>
81 </build>
82
83</project>
84