stratio-decision
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.stratio.decision</groupId>
<artifactId>stratio-decision</artifactId>
<version>1.1.0</version>
</dependency><!--
Copyright (C) 2014 Stratio (http://stratio.com)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
-->
<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>com.stratio</groupId>
<artifactId>parent</artifactId>
<version>0.7.0</version>
</parent>
<groupId>com.stratio.decision</groupId>
<artifactId>stratio-decision</artifactId>
<version>1.1.0</version>
<name>Stratio Decision</name>
<packaging>pom</packaging>
<description>Stratio Decision is a real-time engine with Complex Event Processing capabilities
with a built-in and powerful Streaming Query Language for doing on-demand operations on your
streams.
</description>
<url>http://www.stratio.com</url>
<modules>
<module>engine</module>
<module>api</module>
<module>commons</module>
<module>shell</module>
<module>examples</module>
<module>siddhi</module>
</modules>
<inceptionYear>2014</inceptionYear>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/Stratio/Decision/issues</url>
</issueManagement>
<scm>
<url>https://github.com/Stratio/Decision</url>
<connection>scm:git:git://github.com/Stratio/Decision.git</connection>
<developerConnection>scm:git:git@github.com:Stratio/Decision.git
</developerConnection>
<tag>HEAD</tag>
</scm>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<cassandra.driver>3.0.0</cassandra.driver>
<mongo.driver>2.13.2</mongo.driver>
<kafka.driver>0.8.2.1</kafka.driver>
<solr.driver>5.2.1</solr.driver>
<metrics.version>3.0.1</metrics.version>
<guava.version>16.0.1</guava.version>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
<stratio-platform.target>1.7</stratio-platform.target>
</properties>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-surefire-plugin</artifactId>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-failsafe-plugin</artifactId>
</plugin>
<plugin>
<groupId>com.mycila</groupId>
<artifactId>license-maven-plugin</artifactId>
<configuration>
<header>com/mycila/maven/plugin/license/templates/APACHE-2.txt</header>
<excludes>
<exclude>**/README</exclude>
<exclude>src/main/resources/**/*.txt</exclude>
<exclude>src/test/resources/**/*.txt</exclude>
<exclude>**/DEBIAN/conffiles</exclude>
</excludes>
<mapping>
<conf>SCRIPT_STYLE</conf>
<preinst>SCRIPT_STYLE</preinst>
<postrun>SCRIPT_STYLE</postrun>
<prerun>SCRIPT_STYLE</prerun>
<post>SCRIPT_STYLE</post>
<postinst>SCRIPT_STYLE</postinst>
<decision-variables>SCRIPT_STYLE</decision-variables>
</mapping>
</configuration>
<executions>
<execution>
<goals>
<goal>check</goal>
</goals>
<phase>validate</phase>
</execution>
</executions>
</plugin>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-javadoc-plugin</artifactId>
<version>2.9.1</version>
<executions>
<execution>
<id>attach-javadocs</id>
<goals>
<goal>jar</goal>
</goals>
</execution>
</executions>
</plugin>
</plugins>
</build>
<dependencyManagement>
<dependencies>
<dependency>
<groupId>com.stratio.decision</groupId>
<artifactId>api</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.stratio.decision</groupId>
<artifactId>commons</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.stratio.decision</groupId>
<artifactId>siddhi</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.datastax.cassandra</groupId>
<artifactId>cassandra-driver-core</artifactId>
<version>${cassandra.driver}</version>
</dependency>
<dependency>
<groupId>org.apache.kafka</groupId>
<artifactId>kafka_2.10</artifactId>
<version>${kafka.driver}</version>
</dependency>
<dependency>
<groupId>org.mongodb</groupId>
<artifactId>mongo-java-driver</artifactId>
<version>${mongo.driver}</version>
</dependency>
<dependency>
<groupId>org.apache.solr</groupId>
<artifactId>solr-solrj</artifactId>
<version>${solr.driver}</version>
</dependency>
<!-- GUAVA -->
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
<version>${guava.version}</version>
</dependency>
<!-- AVRO -->
<dependency>
<groupId>org.apache.avro</groupId>
<artifactId>avro</artifactId>
<version>1.8.0</version>
</dependency>
<!-- METRICS -->
<dependency>
<groupId>com.codahale.metrics</groupId>
<artifactId>metrics-core</artifactId>
<version>${metrics.version}</version>
</dependency>
<dependency>
<groupId>com.ryantenney.metrics</groupId>
<artifactId>metrics-spring</artifactId>
<version>${metrics.version}</version>
</dependency>
<dependency>
<groupId>org.mockito</groupId>
<artifactId>mockito-all</artifactId>
<version>1.9.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>junit</groupId>
<artifactId>junit</artifactId>
<version>4.10</version>
<scope>test</scope>
</dependency>
</dependencies>
</dependencyManagement>
<developers>
<developer>
<id>dmorales-stratio</id>
<name>David Morales</name>
<email>dmorales@stratio.com</email>
<roles>
<role>architect</role>
<role>developer</role>
<role>maintainer</role>
</roles>
</developer>
<developer>
<id>albertostratio</id>
<name>Alberto Rodríguez</name>
<email>arodriguez@stratio.com</email>
<roles>
<role>architect</role>
<role>developer</role>
<role>maintainer</role>
</roles>
</developer>
<developer>
<id>ajnavarro-stratio</id>
<name>Antonio Jesus Navarro</name>
<email>ajnavarro@stratio.com</email>
<roles>
<role>architect</role>
<role>developer</role>
<role>maintainer</role>
</roles>
</developer>
<developer>
<id>jp</id>
<name>Jose Pablo Fernandez</name>
<email>josepablofernandez@stratio.com</email>
<roles>
<role>architect</role>
<role>developer</role>
<role>maintainer</role>
</roles>
</developer>
<developer>
<id>aaitor</id>
<name>Aitor Argomaniz</name>
<email>aargomaniz@stratio.com</email>
<roles>
<role>architect</role>
<role>developer</role>
<role>maintainer</role>
</roles>
</developer>
</developers>
</project>