elasticsearch-newrelic-plugin
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>io.ingenieux</groupId> <artifactId>elasticsearch-newrelic-plugin</artifactId> <version>0.2</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"> <parent> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <name>elasticsearch-newrelic-plugin</name> <modelVersion>4.0.0</modelVersion> <groupId>io.ingenieux</groupId> <artifactId>elasticsearch-newrelic-plugin</artifactId> <version>0.2</version> <packaging>jar</packaging> <description>New Relic monitoring plugin for Elasticsearch - Ported from Graphite Original</description> <url>https://github.com/ingenieux/elasticsearch-newrelic-plugin/</url> <properties> <elasticsearch.version>1.3.2</elasticsearch.version> <hamcrest.version>1.3</hamcrest.version> <skipTests>true</skipTests> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> </properties> <licenses> <license> <url>http://www.apache.org/licenses/LICENSE-2.0.txt</url> <name>Apache 2.0</name> </license> </licenses> <organization> <name>ingenieux</name> <url>http://ingenieux.com.br</url> </organization> <developers> <developer> <id>aldrinleal</id> <name>Aldrin Leal</name> <timezone>-3</timezone> </developer> </developers> <issueManagement> <system>github</system> <url>https://github.com/ingenieux/elasticsearch-newrelic-plugin/</url> </issueManagement> <scm> <connection>scm:git:http://github.com/ingenieux/elasticsearch-newrelic-plugin</connection> <developerConnection>scm:git:ssh://git@github.com/ingenieux/elasticsearch-newrelic-plugin.git </developerConnection> <url>http://github.com/ingenieux/elasticsearch-newrelic-plugin</url> </scm> <dependencies> <dependency> <groupId>com.newrelic.agent.java</groupId> <artifactId>newrelic-api</artifactId> <version>3.12.1</version> </dependency> <dependency> <groupId>org.elasticsearch</groupId> <artifactId>elasticsearch</artifactId> <version>${elasticsearch.version}</version> <scope>compile</scope> </dependency> <dependency> <groupId>log4j</groupId> <artifactId>log4j</artifactId> <version>1.2.17</version> <scope>test</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.11</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-core</artifactId> <version>${hamcrest.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>org.hamcrest</groupId> <artifactId>hamcrest-library</artifactId> <version>${hamcrest.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <source>1.6</source> <target>1.6</target> </configuration> </plugin> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-source-plugin</artifactId> <version>2.1.2</version> <executions> <execution> <id>attach-sources</id> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-assembly-plugin</artifactId> <version>2.3</version> <configuration> <appendAssemblyId>false</appendAssemblyId> <outputDirectory>${project.build.directory}/releases/</outputDirectory> <descriptors> <descriptor>${basedir}/src/main/assemblies/plugin.xml</descriptor> </descriptors> </configuration> <executions> <execution> <phase>package</phase> <goals> <goal>single</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </project>