apm-agent-api
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>co.elastic.apm</groupId> <artifactId>apm-agent-api</artifactId> <version>1.53.0</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/xsd/maven-4.0.0.xsd"> <modelVersion>4.0.0</modelVersion> <parent> <artifactId>apm-agent-parent</artifactId> <groupId>co.elastic.apm</groupId> <version>1.53.0</version> </parent> <artifactId>apm-agent-api</artifactId> <name>${project.groupId}:${project.artifactId}</name> <licenses> <license> <name>The Apache Software License, Version 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> </license> </licenses> <properties> <apm-agent-parent.base.dir>${project.basedir}/..</apm-agent-parent.base.dir> </properties> <build> <resources> <resource> <directory>${apm-agent-parent.base.dir}</directory> <includes> <include>LICENSE</include> </includes> <targetPath>META-INF</targetPath> </resource> <resource> <directory>src/main/resources/META-INF</directory> <targetPath>META-INF</targetPath> </resource> </resources> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <executions> <execution> <id>generate-source-jar</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-jar-plugin</artifactId> <configuration> <archive> <manifestEntries> <Automatic-Module-Name>${project.groupId}.api</Automatic-Module-Name> </manifestEntries> </archive> </configuration> </plugin> </plugins> </build> </project>