spring-profiler-extension
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.linyimin0812</groupId> <artifactId>spring-profiler-extension</artifactId> <version>3.1.4</version> </dependency>
<?xml version="1.0" encoding="UTF-8"?> <project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 https://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>io.github.linyimin0812</groupId> <artifactId>spring-profiler-starter</artifactId> <version>3.1.4</version> <relativePath>../spring-profiler-starter/pom.xml</relativePath> </parent> <groupId>io.github.linyimin0812</groupId> <artifactId>spring-profiler-extension</artifactId> <version>3.1.4</version> <name>spring-profiler-extension</name> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <dependencies> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> </dependency> <dependency> <groupId>org.apache.commons</groupId> <artifactId>commons-lang3</artifactId> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>32.1.1-jre</version> </dependency> <dependency> <groupId>com.alibaba</groupId> <artifactId>bytekit-core</artifactId> <version>0.0.8</version> <scope>provided</scope> </dependency> <dependency> <groupId>com.squareup.okhttp3</groupId> <artifactId>okhttp</artifactId> </dependency> <dependency> <groupId>org.spockframework</groupId> <artifactId>spock-core</artifactId> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <artifactId>maven-antrun-plugin</artifactId> <version>1.8</version> <executions> <execution> <phase>process-resources</phase> <goals> <goal>run</goal> </goals> <configuration> <tasks> <copy todir="${extension.output.directory}/async-profiler"> <fileset includes="**/*" dir="async-profiler" /> </copy> <copy todir="${template.directory}"> <fileset file="src/main/resources/flame-graph.html" /> </copy> </tasks> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>