deep-jdbc
Used in:
components
- OverviewOverview
- VersionsVersions
- DependentsDependents
- DependenciesDependencies
<dependency>
<groupId>com.stratio.deep</groupId>
<artifactId>deep-jdbc</artifactId>
<version>0.8.0</version>
</dependency><!--
~ Copyright 2014, Stratio.
~
~ 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>
<artifactId>deep-jdbc</artifactId>
<packaging>jar</packaging>
<name>deep jdbc</name>
<url>http://www.stratio.com</url>
<description>Project containing the actual implementation of the RDD integrating Apache Spark and JDBC
</description>
<parent>
<groupId>com.stratio.deep</groupId>
<artifactId>deep-parent</artifactId>
<version>0.8.0</version>
<relativePath>../deep-parent</relativePath>
</parent>
<developers>
<developer>
<id>mmunoz</id>
<name>Mario Muñoz</name>
<email>mmunoz@paradigmatecnologico.com</email>
<roles>
<role>developer</role>
<role>maintainer</role>
</roles>
</developer>
</developers>
<licenses>
<license>
<name>The Apache Software License, Version 2.0</name>
<url>http://www.apache.org/licenses/LICENSE-2.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:Stratio/stratio-deep.git</connection>
<developerConnection>scm:git:git@github.com:Stratio/stratio-deep.git</developerConnection>
<url>https://github.com/Stratio/stratio-deep</url>
</scm>
<repositories>
<repository>
<id>Neo4j releases</id>
<url>http://m2.neo4j.org/content/repositories/releases</url>
</repository>
<repository>
<id>Neo4j snapshots</id>
<url>http://m2.neo4j.org/content/repositories/snapshots</url>
</repository>
<repository>
<id>sqlBuilder</id>
<url>http://nexus.cs.toronto.edu/nexus/content/repositories/public/</url>
</repository>
</repositories>
<dependencies>
<dependency>
<groupId>edu.toronto.cs.medsavant</groupId>
<artifactId>medsavant-shared</artifactId>
<version>1.3.6</version>
</dependency>
<dependency>
<groupId>com.stratio.deep</groupId>
<artifactId>deep-commons</artifactId>
<version>${project.version}</version>
</dependency>
<dependency>
<groupId>com.stratio.deep</groupId>
<artifactId>deep-commons</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.stratio.deep</groupId>
<artifactId>deep-core</artifactId>
<version>${project.version}</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.stratio.deep</groupId>
<artifactId>deep-core</artifactId>
<version>${project.version}</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.postgresql</groupId>
<artifactId>postgresql</artifactId>
<version>9.3-1102-jdbc41</version>
</dependency>
<dependency>
<groupId>mysql</groupId>
<artifactId>mysql-connector-java</artifactId>
<version>5.1.34</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-jdbc</artifactId>
<version>2.0.0-M06</version>
</dependency>
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j</artifactId>
<version>2.0.0-M06</version>
<exclusions>
<exclusion>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-jmx</artifactId>
</exclusion>
</exclusions>
</dependency>
<dependency>
<groupId>com.oracle</groupId>
<artifactId>ojdbc7</artifactId>
<version>12.1.0.2</version>
</dependency>
<dependency>
<groupId>com.h2database</groupId>
<artifactId>h2</artifactId>
<version>1.4.185</version>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-module-testng</artifactId>
<version>1.5.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>org.powermock</groupId>
<artifactId>powermock-api-mockito</artifactId>
<version>1.5.5</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>com.healthmarketscience.common</groupId>
<artifactId>common-util</artifactId>
<version>1.0.2</version>
</dependency>
</dependencies>
</project>