standalone
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.vmlens</groupId>
<artifactId>standalone</artifactId>
<version>1.2.28</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<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/maven-v4_0_0.xsd">
<parent>
<artifactId>vmlens</artifactId>
<groupId>com.vmlens</groupId>
<version>1.2.28</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<artifactId>standalone</artifactId>
<name>standalone</name>
<url>https://github.com/vmlens/vmlens</url>
<developers>
<developer>
<name>Thomas Krieger</name>
<email>thomas.krieger@vmlens.com</email>
<organization>vmlens</organization>
<organizationUrl>https://www.vmlens.com</organizationUrl>
</developer>
</developers>
<licenses>
<license>
<name>Apache License, Version 2.0</name>
<url>https://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:vmlens/vmlens.git</connection>
<developerConnection>scm:git:git@github.com:vmlens/vmlens.git</developerConnection>
<url>git@github.com:vmlens/vmlens.git</url>
</scm>
<organization>
<name>vmlens</name>
<url>https://www.vmlens.com</url>
</organization>
<build>
<resources>
<resource>
<directory>_dist</directory>
</resource>
</resources>
<plugins>
<plugin>
<artifactId>maven-compiler-plugin</artifactId>
<configuration>
<annotationProcessorPaths>
<path>
<groupId>info.picocli</groupId>
<artifactId>picocli-codegen</artifactId>
<version>4.7.7</version>
</path>
</annotationProcessorPaths>
<compilerArgs>
<arg>-Aproject=${project.groupId}/${project.artifactId}</arg>
</compilerArgs>
</configuration>
</plugin>
<plugin>
<artifactId>maven-shade-plugin</artifactId>
<executions>
<execution>
<phase>package</phase>
<goals>
<goal>shade</goal>
</goals>
<configuration>
<transformers>
<transformer>
<mainClass>com.vmlens.Standalone</mainClass>
</transformer>
</transformers>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<artifactId>maven-clean-plugin</artifactId>
<configuration>
<filesets>
<fileset>
<directory>${basedir}/_dist/</directory>
<includes>
<include>**/*.jar</include>
</includes>
</fileset>
</filesets>
</configuration>
</plugin>
<plugin>
<artifactId>maven-dependency-plugin</artifactId>
<version>3.6.0</version>
<executions>
<execution>
<id>copy-some-jar</id>
<phase>generate-resources</phase>
<goals>
<goal>copy</goal>
</goals>
<configuration>
<artifactItems>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>trace-agent-bootstrap-jdk9</artifactId>
<version>${project.version}</version>
<type>jar</type>
<outputDirectory>${basedir}/_dist/agent_lib/</outputDirectory>
<destFileName>agent_bootstrap.jar</destFileName>
</artifactItem>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>trace-agent</artifactId>
<version>${project.version}</version>
<type>jar</type>
<outputDirectory>${basedir}/_dist/agent_lib/</outputDirectory>
<destFileName>agent.jar</destFileName>
</artifactItem>
<artifactItem>
<groupId>${project.groupId}</groupId>
<artifactId>agent-runtime</artifactId>
<version>${project.version}</version>
<type>jar</type>
<outputDirectory>${basedir}/_dist/agent_lib</outputDirectory>
<destFileName>agent_runtime.jar</destFileName>
</artifactItem>
</artifactItems>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>