snitch
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.bazaarvoice.snitch</groupId> <artifactId>snitch</artifactId> <version>0.8.5</version> </dependency>
<?xml version="1.0"?> <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"> <modelVersion>4.0.0</modelVersion> <parent> <groupId>com.bazaarvoice.commons</groupId> <artifactId>bv-opensource-super-pom</artifactId> <version>1.0</version> </parent> <groupId>com.bazaarvoice.snitch</groupId> <artifactId>snitch</artifactId> <version>0.8.5</version> <packaging>pom</packaging> <scm> <url>https://github.com/bazaarvoice/snitch</url> <connection>scm:git:git@github.com:bazaarvoice/snitch.git</connection> <developerConnection>scm:git:git@github.com:bazaarvoice/snitch.git</developerConnection> </scm> <name>snitch</name> <description>A java library for in-JVM monitoring</description> <url>http://github.com/bazaarvoice/snitch</url> <licenses> <license> <name>Apache License 2.0</name> <url>http://www.apache.org/licenses/LICENSE-2.0</url> <distribution>repo</distribution> </license> </licenses> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> <project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding> </properties> <build> <pluginManagement> <plugins> <plugin> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <compilerArgument>-Xlint:all</compilerArgument> <showWarnings>true</showWarnings> <showDeprecation>true</showDeprecation> </configuration> </plugin> </plugins> </pluginManagement> <plugins> <plugin> <artifactId>maven-release-plugin</artifactId> <version>2.1</version> </plugin> </plugins> </build> <dependencyManagement> <dependencies> <dependency> <groupId>eu.infomas</groupId> <artifactId>annotation-detector</artifactId> <version>3.0.0</version> </dependency> <dependency> <groupId>com.google.guava</groupId> <artifactId>guava</artifactId> <version>11.0.1</version> </dependency> <dependency> <groupId>com.google.code.gson</groupId> <artifactId>gson</artifactId> <version>2.0</version> </dependency> <dependency> <groupId>javax.servlet</groupId> <artifactId>servlet-api</artifactId> <version>2.4</version> </dependency> <dependency> <groupId>org.jboss.netty</groupId> <artifactId>netty</artifactId> <version>3.2.6.Final</version> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <version>4.10</version> <scope>test</scope> </dependency> <dependency> <groupId>org.mockito</groupId> <artifactId>mockito-core</artifactId> <version>1.8.5</version> <scope>test</scope> </dependency> </dependencies> </dependencyManagement> <modules> <module>core</module> <module>netty</module> <module>servlet</module> </modules> </project>