Download grok-0.1.5.jar file

Introduction

You can download grok-0.1.5.jar in this page.

License

Apache License, Version 2.0

Type List

grok-0.1.5.jar file has the following types.

META-INF/MANIFEST.MF
META-INF/maven/io.thekraken/grok/pom.properties
META-INF/maven/io.thekraken/grok/pom.xml
io.thekraken.grok.api.BooleanConverter.class
io.thekraken.grok.api.ByteConverter.class
io.thekraken.grok.api.Converter.class
io.thekraken.grok.api.DateConverter.class
io.thekraken.grok.api.Discovery.class
io.thekraken.grok.api.DoubleConverter.class
io.thekraken.grok.api.FloatConverter.class
io.thekraken.grok.api.Garbage.class
io.thekraken.grok.api.Grok.class
io.thekraken.grok.api.GrokUtils.class
io.thekraken.grok.api.IConverter.class
io.thekraken.grok.api.IntegerConverter.class
io.thekraken.grok.api.KeyValue.class
io.thekraken.grok.api.LongConverter.class
io.thekraken.grok.api.Match.class
io.thekraken.grok.api.Pile.class
io.thekraken.grok.api.ShortConverter.class
io.thekraken.grok.api.StringConverter.class
io.thekraken.grok.api.exception.GrokError.class
io.thekraken.grok.api.exception.GrokException.class

Pom

grok-0.1.5.pom file content.

<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>

	<groupId>io.thekraken</groupId>
	<artifactId>grok</artifactId>
	<version>0.1.5</version>
	<packaging>jar</packaging>
	<name>Grok</name>
	<description>Simple API that allows you to easily parse logs and other files</description>
	<url>http://maven.apache.org</url>

	<distributionManagement>
		<snapshotRepository>
			<id>ossrh</id>
			<url>https://oss.sonatype.org/content/repositories/snapshots</url>
		</snapshotRepository>
		<repository>
			<id>ossrh</id>
			<url>https://oss.sonatype.org/service/local/staging/deploy/maven2/</url>
		</repository>
	</distributionManagement>

	<parent>
		<groupId>org.sonatype.oss</groupId>
		<artifactId>oss-parent</artifactId>
		<version>7</version>
	</parent>

	<licenses>
		<license>
			<name>Apache License, Version 2.0</name>
			<url>http://www.apache.org/licenses/LICENSE-2.0</url>
			<distribution>repo</distribution>
		</license>
	</licenses>

	<developers>
		<developer>
			<id>anthony-corbacho</id>
			<name>Anthony Corbacho</name>
			<email>corbacho.anthony@gmail.com</email>
			<organization>Thekraken</organization>
			<organizationUrl>http://release.thekraken.io</organizationUrl>
			<url>https://github.com/anthonycorbacho</url>
		</developer>
	</developers>

	<scm>
		<connection>scm:git:git@github.com:thekrakken/java-grok.git</connection>
		<developerConnection>scm:git:git@github.com:thekrakken/java-grok.git</developerConnection>
		<url>scm:git:git@github.com:thekrakken/java-grok.git</url>
	</scm>

	<ciManagement>
		<system>Travis</system>
		<url>https://travis-ci.org/thekrakken/java-grok</url>
	</ciManagement>

	<issueManagement>
		<system>Github</system>
		<url>https://github.com/thekrakken/java-grok/issues</url>
	</issueManagement>

	<properties>
		<junit.version>4.11</junit.version>
		<common.version>3.1</common.version>
		<gson.version>2.2.2</gson.version>
		<!-- maven -->
		<java.version>1.7</java.version>
	</properties>

	<dependencies>
		<dependency>
			<groupId>junit</groupId>
			<artifactId>junit</artifactId>
			<version>${junit.version}</version>
			<scope>test</scope>
		</dependency>
		<dependency>
			<groupId>org.apache.commons</groupId>
			<artifactId>commons-lang3</artifactId>
			<version>${common.version}</version>
			<scope>compile</scope>
		</dependency>

		<dependency>
			<groupId>com.google.code.gson</groupId>
			<artifactId>gson</artifactId>
			<version>${gson.version}</version>
			<scope>compile</scope>
		</dependency>

		<dependency>
			<groupId>org.slf4j</groupId>
			<artifactId>slf4j-api</artifactId>
			<version>1.7.5</version>
			<scope>compile</scope>
		</dependency>
	</dependencies>

	<build>
		<plugins>
			<plugin>
				<artifactId>maven-compiler-plugin</artifactId>
				<version>3.1</version>
				<configuration>
					<source>${java.version}</source>
					<target>${java.version}</target>
				</configuration>
			</plugin>

			<plugin>
				<artifactId>maven-javadoc-plugin</artifactId>
				<version>2.9.1</version>
				<configuration><!-- Default configuration for all reports -->
				</configuration>
				<executions>
					<execution>
						<id>aggregate</id>
						<goals>
							<goal>aggregate</goal>
						</goals>
						<phase>site</phase>
						<configuration><!-- Specific configuration for the aggregate report -->
						</configuration>
					</execution>
				</executions>
			</plugin>

			<plugin>
				<artifactId>maven-scm-plugin</artifactId>
				<version>1.8.1</version>
				<configuration>
					<connectionType>developerConnection</connectionType>
					<scmVersion>branch-0.1</scmVersion>
					<scmVersionType>branch</scmVersionType>
				</configuration>
			</plugin>

			<plugin>
				<artifactId>maven-enforcer-plugin</artifactId>
				<version>1.3.1</version>
				<executions>
					<execution>
						<id>enforce</id>
						<configuration>
							<rules>
								<DependencyConvergence />
							</rules>
							<failFast>true</failFast>
						</configuration>
						<goals>
							<goal>enforce</goal>
						</goals>
					</execution>
				</executions>
			</plugin>
		</plugins>

		<pluginManagement>
			<plugins>
				<plugin>
					<artifactId>maven-dependency-plugin</artifactId>
					<version>2.8</version>
				</plugin>
				<plugin>
					<artifactId>maven-surefire-plugin</artifactId>
					<version>2.16</version>
					<configuration combine.children="append">
						<argLine>-Xmx2g -Xms1g</argLine>
					</configuration>
				</plugin>
				<plugin>
					<artifactId>maven-assembly-plugin</artifactId>
					<version>2.4</version>
				</plugin>
				<plugin>
					<groupId>org.codehaus.mojo</groupId>
					<artifactId>exec-maven-plugin</artifactId>
					<version>1.2.1</version>
				</plugin>

				<plugin>
					<groupId>org.apache.maven.plugins</groupId>
					<artifactId>maven-clean-plugin</artifactId>
					<version>2.4.1</version>
					<configuration>
						<filesets>
							<fileset>
								<directory>drivers</directory>
								<followSymlinks>false</followSymlinks>
							</fileset>
						</filesets>
					</configuration>
				</plugin>
			</plugins>
		</pluginManagement>
	</build>

	<profiles>
		<profile>
			<id>build-distr</id>
			<activation>
				<activeByDefault>false</activeByDefault>
			</activation>
			<build>
				<pluginManagement>
					<plugins>
						<plugin>
							<artifactId>maven-surefire-plugin</artifactId>
							<configuration>
								<skipTests>true</skipTests>
							</configuration>
						</plugin>
						<plugin>
							<artifactId>maven-assembly-plugin</artifactId>
							<executions>
								<execution>
									<id>make-assembly</id>
									<phase>package</phase>
									<goals>
										<goal>single</goal>
									</goals>
								</execution>
							</executions>
						</plugin>
					</plugins>
				</pluginManagement>
			</build>
		</profile>

		<profile>
			<id>publish-distr</id>
			<activation>
				<activeByDefault>false</activeByDefault>
			</activation>
			<build>
				<plugins>
					<plugin>
						<artifactId>maven-surefire-plugin</artifactId>
						<configuration>
							<skipTests>true</skipTests>
						</configuration>
					</plugin>
				</plugins>
			</build>
		</profile>

		<profile>
			<id>release-sign-artifacts</id>
			<activation>
				<property>
					<name>performRelease</name>
					<value>true</value>
				</property>
			</activation>
			<build>
				<plugins>
					<plugin>
						<artifactId>maven-gpg-plugin</artifactId>
						<version>1.4</version>
						<executions>
							<execution>
								<id>sign-artifacts</id>
								<phase>verify</phase>
								<goals>
									<goal>sign</goal>
								</goals>
							</execution>
						</executions>
					</plugin>
				</plugins>
			</build>
		</profile>
	</profiles>
</project>

POM Entry

<dependency>
   <groupId>io.thekraken</groupId>
   <artifactId>grok</artifactId>
   <version>0.1.5</version>
</dependency>

Download

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



Download grok-0.1.5.jar file




PreviousNext

Related