logfmt
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency> <groupId>com.heroku</groupId> <artifactId>logfmt</artifactId> <version>0.1</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> <groupId>org.sonatype.oss</groupId> <artifactId>oss-parent</artifactId> <version>7</version> </parent> <groupId>com.heroku</groupId> <artifactId>logfmt</artifactId> <version>0.1</version> <packaging>jar</packaging> <name>logfmt</name> <description>Java implementation of logfmt (http://godoc.org/github.com/kr/logfmt)</description> <url>https://github.com/naaman/logfmt-java</url> <licenses> <license> <name>MIT</name> <url>https://github.com/naaman/logfmt-java/blob/master/LICENSE</url> </license> </licenses> <scm> <url>https://github.com/naaman/logfmt-java</url> <connection>https://github.com/naaman/logfmt-java.git</connection> </scm> <developers> <developer> <name>Naaman Newbold</name> <email>naaman@heroku.com</email> </developer> </developers> <distributionManagement> <repository> <id>sonatype-nexus-staging</id> <url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url> </repository> </distributionManagement> <issueManagement> <system>GitHub</system> <url>https://github.com/naaman/logfmt-java/issues/new</url> </issueManagement> <properties> <caliper.version>0.5-rc1</caliper.version> <gpg.plugin.version>1.2</gpg.plugin.version> <javadoc.plugin.version>2.7</javadoc.plugin.version> <jdk.version>1.6</jdk.version> <source.plugin.version>2.1.2</source.plugin.version> <testng.version>6.8.1</testng.version> </properties> <dependencies> <dependency> <groupId>org.testng</groupId> <artifactId>testng</artifactId> <version>${testng.version}</version> <scope>test</scope> </dependency> <dependency> <groupId>com.google.caliper</groupId> <artifactId>caliper</artifactId> <version>${caliper.version}</version> <scope>test</scope> </dependency> </dependencies> <build> <pluginManagement> <plugins> <plugin> <groupId>org.apache.maven.plugins</groupId> <artifactId>maven-compiler-plugin</artifactId> <version>2.3.2</version> <configuration> <encoding>UTF-8</encoding> <source>${jdk.version}</source> <target>${jdk.version}</target> </configuration> </plugin> </plugins> </pluginManagement> </build> <profiles> <profile> <id>prepare-for-central</id> <activation> <activeByDefault>false</activeByDefault> <property> <name>prepareForCentral</name> <value>true</value> </property> </activation> <build> <plugins> <plugin> <artifactId>maven-source-plugin</artifactId> <version>${source.plugin.version}</version> <executions> <execution> <id>attach-source</id> <phase>package</phase> <goals> <goal>jar-no-fork</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-javadoc-plugin</artifactId> <version>${javadoc.plugin.version}</version> <executions> <execution> <id>attach-javadoc</id> <phase>package</phase> <goals> <goal>jar</goal> </goals> </execution> </executions> </plugin> <plugin> <artifactId>maven-gpg-plugin</artifactId> <version>${gpg.plugin.version}</version> <executions> <execution> <id>sign-artifacts</id> <phase>package</phase> <goals> <goal>sign</goal> </goals> </execution> </executions> </plugin> </plugins> </build> </profile> </profiles> </project>