GraphAware Tests.
Tools for testing Neo4j-related and GraphAware-related code.
Here is the list of declaration for tests. If you use Maven you can use the following code to add the dependency for this POM file.
<dependency> <groupId>com.graphaware.neo4j</groupId> <artifactId>tests</artifactId> <version>2.1.3.11</version> </dependency>
If you think this Maven repository POM file listing for tests is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
GNU General Public License.
Here is the content of the POM file.
<!-- ~ Copyright (c) 2014 GraphAware ~ ~ This file is part of GraphAware. ~ ~ GraphAware 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>framework-parent</artifactId> <version>2.1.3.11</version> </parent> <artifactId>tests</artifactId> <packaging>jar</packaging> <name>GraphAware Tests</name> <description>Tools for testing Neo4j-related and GraphAware-related code</description> <url>http://graphaware.com</url> <dependencies> <dependency> <groupId>org.neo4j</groupId> <artifactId>neo4j-kernel</artifactId> <type>test-jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>org.neo4j.app</groupId> <artifactId>neo4j-server</artifactId> <type>test-jar</type> <scope>compile</scope> </dependency> <dependency> <groupId>junit</groupId> <artifactId>junit</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>com.graphaware.neo4j</groupId> <artifactId>common</artifactId> <exclusions> <exclusion> <groupId>org.ow2.asm</groupId> <artifactId>asm</artifactId> </exclusion> </exclusions> </dependency> <dependency> <groupId>org.apache.httpcomponents</groupId> <artifactId>httpclient</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-core</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-annotations</artifactId> </dependency> <dependency> <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifactId> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-server</artifactId> </dependency> <dependency> <groupId>org.eclipse.jetty</groupId> <artifactId>jetty-servlet</artifactId> </dependency> <dependency> <groupId>com.graphaware.neo4j</groupId> <artifactId>server-common</artifactId> </dependency> <dependency> <groupId>commons-io</groupId> <artifactId>commons-io</artifactId> </dependency> <dependency> <groupId>org.neo4j.app</groupId> <artifactId>neo4j-server</artifactId> <scope>compile</scope> </dependency> <!-- this is needed when testing with the enterprise server --> <dependency> <groupId>org.neo4j.app</groupId> <artifactId>neo4j-server-enterprise</artifactId> <scope>compile</scope> </dependency> <dependency> <groupId>org.springframework</groupId> <artifactId>spring-core</artifactId> </dependency> </dependencies> </project>