cassandra-exporter-agent
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.github.podile</groupId> <artifactId>cassandra-exporter-agent</artifactId> <version>0.9.11.4</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>cassandra-exporter-parent</artifactId> <groupId>io.github.podile</groupId> <version>0.9.11.4</version> </parent> <modelVersion>4.0.0</modelVersion> <artifactId>cassandra-exporter-agent</artifactId> <name>Cassandra Exporter Agent</name> <version>0.9.11.4</version> <build> <plugins> <plugin> <artifactId>maven-shade-plugin</artifactId> <executions> <execution> <phase>package</phase> <goals> <goal>shade</goal> </goals> </execution> </executions> <configuration> <finalName>cassandra-exporter-agent-${project.version}</finalName> <filters> <filter> <artifact>*:*</artifact> <excludes> <exclude>META-INF/*.SF</exclude> <exclude>META-INF/*.DSA</exclude> <exclude>META-INF/*.RSA</exclude> </excludes> </filter> </filters> <transformers> <transformer /> <transformer> <manifestEntries> <Premain-Class>com.zegelin.cassandra.exporter.Agent</Premain-Class> <X-Compile-Source-JDK>${maven.compiler.source}</X-Compile-Source-JDK> <X-Compile-Target-JDK>${maven.compiler.target}</X-Compile-Target-JDK> </manifestEntries> </transformer> </transformers> </configuration> </plugin> </plugins> </build> <dependencies> <dependency> <groupId>org.apache.cassandra</groupId> <artifactId>cassandra-all</artifactId> <version>3.11.2</version> <scope>provided</scope> <exclusions> <exclusion> <artifactId>snappy-java</artifactId> <groupId>org.xerial.snappy</groupId> </exclusion> <exclusion> <artifactId>lz4</artifactId> <groupId>net.jpountz.lz4</groupId> </exclusion> <exclusion> <artifactId>compress-lzf</artifactId> <groupId>com.ning</groupId> </exclusion> <exclusion> <artifactId>guava</artifactId> <groupId>com.google.guava</groupId> </exclusion> <exclusion> <artifactId>commons-cli</artifactId> <groupId>commons-cli</groupId> </exclusion> <exclusion> <artifactId>commons-codec</artifactId> <groupId>commons-codec</groupId> </exclusion> <exclusion> <artifactId>commons-lang3</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>commons-math3</artifactId> <groupId>org.apache.commons</groupId> </exclusion> <exclusion> <artifactId>concurrentlinkedhashmap-lru</artifactId> <groupId>com.googlecode.concurrentlinkedhashmap</groupId> </exclusion> <exclusion> <artifactId>antlr</artifactId> <groupId>org.antlr</groupId> </exclusion> <exclusion> <artifactId>antlr-runtime</artifactId> <groupId>org.antlr</groupId> </exclusion> <exclusion> <artifactId>slf4j-api</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>log4j-over-slf4j</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>jcl-over-slf4j</artifactId> <groupId>org.slf4j</groupId> </exclusion> <exclusion> <artifactId>jackson-core-asl</artifactId> <groupId>org.codehaus.jackson</groupId> </exclusion> <exclusion> <artifactId>jackson-mapper-asl</artifactId> <groupId>org.codehaus.jackson</groupId> </exclusion> <exclusion> <artifactId>json-simple</artifactId> <groupId>com.googlecode.json-simple</groupId> </exclusion> <exclusion> <artifactId>high-scale-lib</artifactId> <groupId>com.boundary</groupId> </exclusion> <exclusion> <artifactId>snakeyaml</artifactId> <groupId>org.yaml</groupId> </exclusion> <exclusion> <artifactId>jbcrypt</artifactId> <groupId>org.mindrot</groupId> </exclusion> <exclusion> <artifactId>metrics-core</artifactId> <groupId>io.dropwizard.metrics</groupId> </exclusion> <exclusion> <artifactId>metrics-jvm</artifactId> <groupId>io.dropwizard.metrics</groupId> </exclusion> <exclusion> <artifactId>reporter-config3</artifactId> <groupId>com.addthis.metrics</groupId> </exclusion> <exclusion> <artifactId>thrift-server</artifactId> <groupId>com.thinkaurelius.thrift</groupId> </exclusion> <exclusion> <artifactId>stream</artifactId> <groupId>com.clearspring.analytics</groupId> </exclusion> <exclusion> <artifactId>logback-core</artifactId> <groupId>ch.qos.logback</groupId> </exclusion> <exclusion> <artifactId>logback-classic</artifactId> <groupId>ch.qos.logback</groupId> </exclusion> <exclusion> <artifactId>libthrift</artifactId> <groupId>org.apache.thrift</groupId> </exclusion> <exclusion> <artifactId>cassandra-thrift</artifactId> <groupId>org.apache.cassandra</groupId> </exclusion> <exclusion> <artifactId>jna</artifactId> <groupId>net.java.dev.jna</groupId> </exclusion> <exclusion> <artifactId>jamm</artifactId> <groupId>com.github.jbellis</groupId> </exclusion> <exclusion> <artifactId>netty-all</artifactId> <groupId>io.netty</groupId> </exclusion> <exclusion> <artifactId>joda-time</artifactId> <groupId>joda-time</groupId> </exclusion> <exclusion> <artifactId>sigar</artifactId> <groupId>org.fusesource</groupId> </exclusion> <exclusion> <artifactId>ecj</artifactId> <groupId>org.eclipse.jdt.core.compiler</groupId> </exclusion> <exclusion> <artifactId>ohc-core</artifactId> <groupId>org.caffinitas.ohc</groupId> </exclusion> <exclusion> <artifactId>caffeine</artifactId> <groupId>com.github.ben-manes.caffeine</groupId> </exclusion> <exclusion> <artifactId>jctools-core</artifactId> <groupId>org.jctools</groupId> </exclusion> <exclusion> <artifactId>asm</artifactId> <groupId>org.ow2.asm</groupId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>6.14.3</version> <scope>test</scope> <exclusions> <exclusion> <artifactId>jcommander</artifactId> <groupId>com.beust</groupId> </exclusion> <exclusion> <artifactId>bsh</artifactId> <groupId>org.apache-extras.beanshell</groupId> </exclusion> </exclusions> </dependency> </dependencies> </project>