meta-core
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.stratio.meta</groupId>
<artifactId>meta-core</artifactId>
<version>0.0.5</version>
</dependency><?xml version="1.0" encoding="UTF-8"?>
<!-- ~ Stratio Meta ~ ~ Copyright (c) 2014, Stratio, All rights reserved.
~ ~ This library is free software; you can redistribute it and/or ~ modify
it under the terms of the GNU Lesser General Public ~ License as published
by the Free Software Foundation; either ~ version 3.0 of the License, or
(at your option) any later version. ~ ~ This library is distributed in the
hope that it will be useful, ~ but WITHOUT ANY WARRANTY; without even the
implied warranty of ~ MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
See the GNU ~ Lesser General Public License for more details. ~ ~ You should
have received a copy of the GNU Lesser General Public ~ License along with
this library. -->
<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>
<artifactId>meta-parent</artifactId>
<groupId>com.stratio.meta</groupId>
<version>0.0.5</version>
</parent>
<modelVersion>4.0.0</modelVersion>
<packaging>jar</packaging>
<artifactId>meta-core</artifactId>
<name>Stratio META core</name>
<description>Stratio META</description>
<url>https://github.com/Stratio/stratio-meta/</url>
<licenses>
<license>
<name>GNU General Lesser Public License (LGPL) version 3.0</name>
<url>http://www.gnu.org/licenses/lgpl-3.0.html</url>
</license>
</licenses>
<scm>
<url>scm:git:git@github.com:Stratio/stratio-meta.git</url>
<connection>https://github.com/Stratio/stratio-meta/</connection>
</scm>
<developers>
<developer>
<id>aagea</id>
<name>Álvaro Agea</name>
<email>aagea at stratio dot com</email>
</developer>
<developer>
<id>antonioalcocer</id>
<name>Antonio Alcocer</name>
<email>aalcocer at stratio dot com</email>
</developer>
<developer>
<id>miguel0afd</id>
<name>Miguel Angel Fernandez</name>
<email>mafernandez at stratio dot com</email>
</developer>
<developer>
<id>gmunoz</id>
<name>Gaspar Muñoz</name>
<email>gmunoz at stratio dot com</email>
</developer>
<developer>
<id>roclas</id>
<name>Carlos Hernandez</name>
<email>chernandez at stratio dot com</email>
</developer>
<developer>
<id>dhiguero</id>
<name>Daniel Higuero</name>
<email>dhiguero at stratio dot com</email>
</developer>
</developers>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<antlr.version>3.5.1</antlr.version>
</properties>
<dependencies>
<dependency>
<groupId>org.testng</groupId>
<artifactId>testng</artifactId>
<version>6.8.8</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr</artifactId>
<version>${antlr.version}</version>
<type>jar</type>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.antlr</groupId>
<artifactId>antlr-runtime</artifactId>
<version>${antlr.version}</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-api</artifactId>
<version>1.7.6</version>
</dependency>
<dependency>
<groupId>org.slf4j</groupId>
<artifactId>slf4j-log4j12</artifactId>
<version>1.7.6</version>
</dependency>
<dependency>
<groupId>log4j</groupId>
<artifactId>log4j</artifactId>
<version>1.2.17</version>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-lang3</artifactId>
<version>3.2.1</version>
</dependency>
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>16.0.1</version>
</dependency>
<dependency>
<groupId>com.datastax.cassandra</groupId>
<artifactId>cassandra-driver-core</artifactId>
<version>${cassandra.driver}</version>
</dependency>
<dependency>
<groupId>org.xerial.snappy</groupId>
<artifactId>snappy-java</artifactId>
<version>1.1.1-M1</version>
</dependency>
<dependency>
<groupId>net.jpountz.lz4</groupId>
<artifactId>lz4</artifactId>
<version>1.2.0</version>
</dependency>
<dependency>
<groupId>jline</groupId>
<artifactId>jline</artifactId>
<version>2.11</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-core-asl</artifactId>
<version>1.9.2</version>
</dependency>
<dependency>
<groupId>org.codehaus.jackson</groupId>
<artifactId>jackson-mapper-asl</artifactId>
<version>1.9.2</version>
</dependency>
<dependency>
<groupId>joda-time</groupId>
<artifactId>joda-time</artifactId>
<version>2.3</version>
</dependency>
<dependency>
<groupId>com.stratio.meta</groupId>
<artifactId>meta-common</artifactId>
<version>${project.parent.version}</version>
</dependency>
<dependency>
<groupId>com.stratio.deep</groupId>
<artifactId>deep-core</artifactId>
<version>${deep.version}</version>
</dependency>
<dependency>
<groupId>com.google.inject</groupId>
<artifactId>guice</artifactId>
<version>2.0</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.stratio.streaming</groupId>
<artifactId>streaming-api</artifactId>
<version>0.3.3</version>
</dependency>
<!--dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-streaming_2.10</artifactId>
<version>0.9.1</version>
</dependency>
<dependency>
<groupId>org.apache.spark</groupId>
<artifactId>spark-streaming-kafka_2.10</artifactId>
<version>0.9.1</version>
</dependency-->
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.antlr</groupId>
<artifactId>antlr3-maven-plugin</artifactId>
<version>${antlr.version}</version>
<executions>
<execution>
<id>run antlr3</id>
<phase>generate-sources</phase>
<goals>
<goal>antlr</goal>
</goals>
<configuration>
<sourceDirectory>src/main/java/com/stratio/meta/core/grammar</sourceDirectory>
<listener>true</listener>
<visitor>true</visitor>
<outputDirectory>src/main/java/com/stratio/meta/core/grammar/generated</outputDirectory>
<arguments>
<argument>-package</argument>
<argument>com.stratio.meta.core.grammar.generated</argument>
</arguments>
</configuration>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
<version>2.17</version>
</plugin>
</plugins>
</build>
</project>