microsoft/gctoolkit
Publicmirrored from https://github.com/microsoft/gctoolkitAvailable
gclogs/pom.xml
76lines · modeblame
8d88dfc6Bruno Borges4 years ago | 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> | |
e5020377GitHub Actions3 years ago | 9 | <version>3.0.5-SNAPSHOT</version> |
8d88dfc6Bruno Borges4 years ago | 10 | <relativePath>../pom.xml</relativePath> |
| 11 | </parent> | |
| 12 | | |
| 13 | <artifactId>gctoolkit-gclogs</artifactId> | |
f98e7f7aAnant Kurapati4 years ago | 14 | <description>GCToolkit test gclogs downloader</description> |
| 15 | <url>${project.parent.url}</url> | |
| 16 | <name>GCToolKit GCLogs</name> | |
8d88dfc6Bruno Borges4 years ago | 17 | <packaging>pom</packaging> |
| 18 | | |
| 19 | <properties> | |
9fa0e34dKirk Pepperdine2 years ago | 20 | <gctoolkit-testdata-version>1.0.8</gctoolkit-testdata-version> |
8d88dfc6Bruno Borges4 years ago | 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> | |
98e4771dGitHub Actions4 years ago | 63 | <property name="testdata-package" value="gctoolkit-testdata-${gctoolkit-testdata-version}.zip" /> |
8d88dfc6Bruno Borges4 years ago | 64 | |
98e4771dGitHub Actions4 years ago | 65 | <get skipexisting="true" src="https://github.com/microsoft/gctoolkit-testdata/releases/download/${gctoolkit-testdata-version}/${testdata-package}" dest="${maven-parent.basedir}" /> |
8d88dfc6Bruno Borges4 years ago | 66 | |
98e4771dGitHub Actions4 years ago | 67 | <unzip src="${maven-parent.basedir}/${testdata-package}" dest="${maven-parent.basedir}" overwrite="false" /> |
8d88dfc6Bruno Borges4 years ago | 68 | </target> |
| 69 | </configuration> | |
| 70 | </execution> | |
| 71 | </executions> | |
| 72 | </plugin> | |
| 73 | </plugins> | |
| 74 | </build> | |
| 75 | | |
| 76 | </project> |