Download glowroot-agent-plugin-api-0.9.16.jar file

Introduction

You can download glowroot-agent-plugin-api-0.9.16.jar in this page.

License

Open Source

Type List

glowroot-agent-plugin-api-0.9.16.jar file has the following types.

META-INF/LICENSE
META-INF/MANIFEST.MF
META-INF/NOTICE
META-INF/maven/org.glowroot/glowroot-agent-plugin-api/pom.properties
META-INF/maven/org.glowroot/glowroot-agent-plugin-api/pom.xml
org.glowroot.agent.plugin.api.Agent.class
org.glowroot.agent.plugin.api.AsyncQueryEntry.class
org.glowroot.agent.plugin.api.AsyncTraceEntry.class
org.glowroot.agent.plugin.api.AuxThreadContext.class
org.glowroot.agent.plugin.api.Logger.class
org.glowroot.agent.plugin.api.Message.class
org.glowroot.agent.plugin.api.MessageSupplier.class
org.glowroot.agent.plugin.api.OptionalThreadContext.class
org.glowroot.agent.plugin.api.QueryEntry.class
org.glowroot.agent.plugin.api.QueryMessage.class
org.glowroot.agent.plugin.api.QueryMessageSupplier.class
org.glowroot.agent.plugin.api.ThreadContext.class
org.glowroot.agent.plugin.api.Timer.class
org.glowroot.agent.plugin.api.TimerName.class
org.glowroot.agent.plugin.api.TraceEntry.class
org.glowroot.agent.plugin.api.config.BooleanProperty.class
org.glowroot.agent.plugin.api.config.ConfigListener.class
org.glowroot.agent.plugin.api.config.ConfigService.class
org.glowroot.agent.plugin.api.config.DoubleProperty.class
org.glowroot.agent.plugin.api.config.StringProperty.class
org.glowroot.agent.plugin.api.internal.NopConfigService.class
org.glowroot.agent.plugin.api.internal.NopTransactionService.class
org.glowroot.agent.plugin.api.internal.ReadableMessage.class
org.glowroot.agent.plugin.api.internal.ReadableQueryMessage.class
org.glowroot.agent.plugin.api.internal.ServiceRegistry.class
org.glowroot.agent.plugin.api.util.FastThreadLocal.class
org.glowroot.agent.plugin.api.util.Reflection.class
org.glowroot.agent.plugin.api.weaving.BindClassMeta.class
org.glowroot.agent.plugin.api.weaving.BindMethodMeta.class
org.glowroot.agent.plugin.api.weaving.BindMethodName.class
org.glowroot.agent.plugin.api.weaving.BindOptionalReturn.class
org.glowroot.agent.plugin.api.weaving.BindParameter.class
org.glowroot.agent.plugin.api.weaving.BindParameterArray.class
org.glowroot.agent.plugin.api.weaving.BindReceiver.class
org.glowroot.agent.plugin.api.weaving.BindReturn.class
org.glowroot.agent.plugin.api.weaving.BindThrowable.class
org.glowroot.agent.plugin.api.weaving.BindTraveler.class
org.glowroot.agent.plugin.api.weaving.IsEnabled.class
org.glowroot.agent.plugin.api.weaving.MethodModifier.class
org.glowroot.agent.plugin.api.weaving.Mixin.class
org.glowroot.agent.plugin.api.weaving.MixinInit.class
org.glowroot.agent.plugin.api.weaving.OnAfter.class
org.glowroot.agent.plugin.api.weaving.OnBefore.class
org.glowroot.agent.plugin.api.weaving.OnReturn.class
org.glowroot.agent.plugin.api.weaving.OnThrow.class
org.glowroot.agent.plugin.api.weaving.OptionalReturn.class
org.glowroot.agent.plugin.api.weaving.Pointcut.class
org.glowroot.agent.plugin.api.weaving.Shim.class

Pom

glowroot-agent-plugin-api-0.9.16.pom file content.

<?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>
    <groupId>org.glowroot</groupId>
    <artifactId>glowroot-parent</artifactId>
    <version>0.9.16</version>
    <relativePath>../..</relativePath>
  </parent>

  <artifactId>glowroot-agent-plugin-api</artifactId>

  <name>Glowroot Agent Plugin API</name>
  <description>Glowroot Agent Plugin API</description>

  <dependencies>
    <dependency>
      <groupId>com.google.guava</groupId>
      <artifactId>guava</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>org.slf4j</groupId>
      <artifactId>slf4j-api</artifactId>
      <scope>provided</scope>
    </dependency>
    <dependency>
      <groupId>${checker.qual.group.id}</groupId>
      <artifactId>${checker.qual.artifact.id}</artifactId>
      <version>${checker.qual.version}</version>
      <!-- don't need this dependency at runtime since only annotations -->
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>com.google.code.findbugs</groupId>
      <artifactId>jsr305</artifactId>
      <!-- don't need this dependency at runtime since only annotations -->
      <optional>true</optional>
    </dependency>
    <dependency>
      <groupId>junit</groupId>
      <artifactId>junit</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.assertj</groupId>
      <artifactId>assertj-core</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>org.mockito</groupId>
      <artifactId>mockito-core</artifactId>
      <scope>test</scope>
    </dependency>
    <dependency>
      <groupId>ch.qos.logback</groupId>
      <artifactId>logback-classic</artifactId>
      <scope>test</scope>
    </dependency>
  </dependencies>

  <build>
    <pluginManagement>
      <plugins>
        <plugin>
          <artifactId>maven-javadoc-plugin</artifactId>
          <configuration>
            <excludePackageNames>
              org.glowroot.agent.plugin.api.internal,org.glowroot.agent.plugin.api.transaction.internal
            </excludePackageNames>
          </configuration>
        </plugin>
      </plugins>
    </pluginManagement>
  </build>
</project>

POM Entry

<dependency>
   <groupId>org.glowroot</groupId>
   <artifactId>glowroot-agent-plugin-api</artifactId>
   <version>0.9.16</version>
</dependency>

Download

If you think the following glowroot-agent-plugin-api-0.9.16.jar downloaded from Maven central repository is inappropriate, such as containing malicious code/tools or violating the copyright, please email , thanks.



Download glowroot-agent-plugin-api-0.9.16.jar file




PreviousNext

Related