glowroot-agent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>org.glowroot</groupId> <artifactId>glowroot-agent</artifactId> <version>0.14.0-beta.3</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>glowroot-parent</artifactId> <groupId>org.glowroot</groupId> <version>0.14.0-beta.3</version> <relativePath>../../../pom.xml</relativePath> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>glowroot-agent</artifactId> <name>Glowroot Agent</name> <description>Glowroot Agent</description> <build> <plugins> <plugin> <groupId>org.glowroot</groupId> <artifactId>glowroot-agent-dist-maven-plugin</artifactId> <version>0.14.0-beta.3</version> <executions> <execution> <goals> <goal>generate</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <dependencyReducedPomLocation>${project.build.directory}/dependency-reduced-pom.xml</dependencyReducedPomLocation> <createSourcesJar>true</createSourcesJar> <shadeSourcesContent>true</shadeSourcesContent> <artifactSet> <includes> <include>org.glowroot:glowroot-agent-core</include> <include>org.glowroot:glowroot-agent-*-plugin</include> </includes> </artifactSet> <filters> <filter> <artifact>org.glowroot:glowroot-agent-*-plugin</artifact> <excludes> <exclude>META-INF/glowroot.plugin.json</exclude> </excludes> </filter> </filters> <transformers> <transformer> <manifestEntries> <Implementation-Title>${project.name}</Implementation-Title> <Implementation-Version>${project.version}</Implementation-Version> <Build-Commit>${glowroot.build.commit}</Build-Commit> <Build-Time>${maven.build.timestamp}</Build-Time> <Premain-Class>org.glowroot.agent.AgentPremain</Premain-Class> <Main-Class>org.glowroot.agent.ToolMain</Main-Class> <Can-Redefine-Classes>true</Can-Redefine-Classes> <Can-Retransform-Classes>true</Can-Retransform-Classes> </manifestEntries> </transformer> </transformers> </configuration> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> <configuration> <descriptors> <descriptor>${project.build.directory}/../dist.xml</descriptor> </descriptors> </configuration> </execution> </executions> </plugin> </plugins> </build> <profiles> <profile> <id>javadoc</id> <build> <plugins> <plugin> <artifactId>maven-dependency-plugin</artifactId> <version>3.1.1</version> <executions> <execution> <id>copy-javadoc</id> <phase>package</phase> <goals> <goal>copy</goal> </goals> <configuration> <artifactItems> <artifactItem> <groupId>org.glowroot</groupId> <artifactId>glowroot-agent-core-unshaded</artifactId> <classifier>javadoc</classifier> <version>0.14.0-beta.3</version> </artifactItem> </artifactItems> </configuration> </execution> </executions> </plugin> <plugin> <groupId>org.codehaus.mojo</groupId> <artifactId>build-helper-maven-plugin</artifactId> <version>3.0.0</version> <executions> <execution> <phase>package</phase> <goals> <goal>attach-artifact</goal> </goals> <configuration> <artifacts> <artifact> <file>/home/runner/work/glowroot/glowroot/agent/dist/target/dependency/glowroot-agent-core-unshaded-0.14.0-beta.3-javadoc.jar</file> <type>jar</type> <classifier>javadoc</classifier> </artifact> </artifacts> </configuration> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> <dependencies> <dependency> <groupId>org.glowroot</groupId> <artifactId>glowroot-agent-central-https-linux</artifactId> <version>0.14.0-beta.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.glowroot</groupId> <artifactId>glowroot-agent-central-https-windows</artifactId> <version>0.14.0-beta.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.glowroot</groupId> <artifactId>glowroot-agent-central-https-osx</artifactId> <version>0.14.0-beta.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.glowroot</groupId> <artifactId>glowroot-agent-logging-logstash</artifactId> <version>0.14.0-beta.3</version> <scope>provided</scope> </dependency> <dependency> <groupId>org.glowroot</groupId> <artifactId>glowroot-agent-embedded</artifactId> <version>0.14.0-beta.3</version> <scope>provided</scope> </dependency> </dependencies> </project>