Reputation: 95
I just tried upgrading to 2.1.3 and found the the following test-jar is missing from Maven Central:
<dependency>
<groupId>org.neo4j</groupId>
<artifactId>neo4j-kernel</artifactId>
<version>2.1.3</version>
<type>test-jar</type>
<scope>test</scope>
</dependency>
I am looking to use the TestGraphDatabaseFactory, any chance it moved?
Upvotes: 0
Views: 194
Reputation: 39925
It is there, see http://repo1.maven.org/maven2/org/neo4j/neo4j-kernel/2.1.3/ having a neo4j-kernel-2.1.3-tests.jar
.
I've just verified that the equivalent dependency in gradle just works fine:
testCompile group: 'org.neo4j', name: 'neo4j-kernel', version: '2.1.3', classifier: 'tests'
Maybe you're using Maven central behind a proxy that has not yet been updated?
Upvotes: 1