spring-profiler-starter
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.linyimin0812</groupId> <artifactId>spring-profiler-starter</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-startup-analyzer</artifactId> <version>3.1.4</version> </parent> <groupId>io.github.linyimin0812</groupId> <artifactId>spring-profiler-starter</artifactId> <version>3.1.4</version> <packaging>pom</packaging> <licenses> <license> <name>Apache License, Version 2.0</name> <url>https://www.apache.org/licenses/LICENSE-2.0</url> </license> </licenses> <properties> <extension.output.directory>${user.home}/spring-startup-analyzer/lib/extension/</extension.output.directory> </properties> <dependencies> <dependency> <groupId>io.github.linyimin0812</groupId> <artifactId>spring-profiler-api</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>io.github.linyimin0812</groupId> <artifactId>spring-profiler-common</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.picocontainer</groupId> <artifactId>picocontainer</artifactId> <scope>provided</scope> </dependency> <dependency> <groupId>org.kohsuke.metainf-services</groupId> <artifactId>metainf-services</artifactId> <version>1.9</version> <scope>compile</scope> </dependency> </dependencies> <build> <finalName>${project.artifactId}</finalName> <plugins> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <id>jar-with-dependencies</id> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <finalName>${project.artifactId}</finalName> <appendAssemblyId>false</appendAssemblyId> <outputDirectory>${extension.output.directory}</outputDirectory> <descriptorRefs> <descriptorRef>jar-with-dependencies</descriptorRef> </descriptorRefs> <archive> <manifestEntries> <Specification-Title>${project.name}</Specification-Title> <Specification-Version>${project.version}</Specification-Version> <Implementation-Title>${project.name}</Implementation-Title> <Implementation-Version>${project.version}</Implementation-Version> </manifestEntries> </archive> </configuration> </execution> </executions> </plugin> </plugins> </build> </project>