| POM: |
Show
hide
<!--
~ Copyright (c) 2013-2016 GraphAware
~
~ This file is part of the GraphAware Framework.
~
~ GraphAware Framework is free software: you can redistribute it and/or modify it under the terms
~ of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License,
~ or (at your option) any later version.
~
~ This program 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 General Public License for more details. You should have received a copy of the
~ GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses />.
-->
<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.graphaware.neo4j</groupId>
<artifactId>module-parent</artifactId>
<version>2.3.1.37</version>
</parent>
<artifactId>programmatic-importer</artifactId>
<version>2.3.1.37.2</version>
<name>GraphAware Programmatic Neo4j Importer</name>
<description>Importer high-performance multi-threaded initial data load into Neo4j from CSV/SQL with custom logic</description>
<url>http://graphaware.com</url>
<licenses>
<license>
<name>GNU General Public License, version 3</name>
<url>http://www.gnu.org/licenses/gpl-3.0.txt</url>
<distribution>repo</distribution>
</license>
</licenses>
<scm>
<connection>scm:git:git@github.com:graphaware/neo4j-importer.git</connection>
<developerConnection>scm:git:git@github.com:graphaware/neo4j-importer.git</developerConnection>
<url>git@github.com:graphaware/neo4j-importer.git</url>
<tag>programmatic-importer-2.3.1.37.2</tag>
</scm>
<developers>
<developer>
<id>bachmanm</id>
<name>Michal Bachman</name>
<email>neo4j-importer@graphaware.com</email>
</developer>
</developers>
<ciManagement>
<url>https://travis-ci.org/graphaware/neo4j-importer</url>
<system>Travis CI</system>
</ciManagement>
<inceptionYear>2015</inceptionYear>
<issueManagement>
<system>GitHub</system>
<url>https://github.com/graphaware/neo4j-importer/issues</url>
</issueManagement>
<organization>
<name>Graph Aware Limited</name>
<url>http://graphaware.com</url>
</organization>
<dependencies>
<!-- Neo4j -->
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-io</groupId>
<artifactId>commons-io</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>ch.qos.logback</groupId>
<artifactId>logback-classic</artifactId>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.springframework</groupId>
<artifactId>spring-orm</artifactId>
<version>${spring.version}</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-dbcp2</artifactId>
<version>2.0.1</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>commons-cli</groupId>
<artifactId>commons-cli</artifactId>
<version>1.2</version>
<scope>compile</scope>
</dependency>
<dependency>
<groupId>com.graphaware.neo4j</groupId>
<artifactId>tests</artifactId>
</dependency>
<dependency>
<groupId>org.apache.commons</groupId>
<artifactId>commons-csv</artifactId>
<version>1.1</version>
</dependency>
<dependency>
<groupId>org.mapdb</groupId>
<artifactId>mapdb</artifactId>
<version>1.0.8</version>
<scope>compile</scope>
</dependency>
</dependencies>
</project>
|