Merge branch 'master' of github.com:SpringSource/spring-data-graph
This commit is contained in:
7
pom.xml
7
pom.xml
@@ -371,10 +371,15 @@
|
||||
</build>
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<id>repository.source.maven.release</id>
|
||||
<id>repository.springsource.maven.bundles.release</id>
|
||||
<name>SpringSource Maven Release Repository</name>
|
||||
<url>http://repository.springsource.com/maven/bundles/release</url>
|
||||
</pluginRepository>
|
||||
<pluginRepository>
|
||||
<id>repository.springframework.maven.release</id>
|
||||
<name>Spring Framework Maven Release Repository</name>
|
||||
<url>http://maven.springframework.org/release</url>
|
||||
</pluginRepository>
|
||||
<pluginRepository>
|
||||
<id>jboss-legacy-repository</id>
|
||||
<name>Old JBoss Public Repository</name>
|
||||
|
||||
@@ -191,20 +191,20 @@
|
||||
<groupId>com.tinkerpop.blueprints</groupId>
|
||||
<artifactId>blueprints-core</artifactId>
|
||||
<version>${blueprints.version}</version>
|
||||
<scope>optional</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.tinkerpop.blueprints</groupId>
|
||||
<artifactId>blueprints-neo4j-graph</artifactId>
|
||||
<version>${blueprints.version}</version>
|
||||
<scope>optional</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.tinkerpop</groupId>
|
||||
<artifactId>gremlin</artifactId>
|
||||
<version>${gremlin.version}</version>
|
||||
<scope>optional</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
@@ -388,7 +388,8 @@
|
||||
</plugin>
|
||||
<plugin>
|
||||
<groupId>com.mycila.maven-license-plugin</groupId>
|
||||
<artifactId>maven-license-plugin</artifactId>
|
||||
<artifactId>maven-license-plugin</artifactId>
|
||||
<version>1.9.0</version>
|
||||
<executions>
|
||||
<execution>
|
||||
<id>check-licenses</id>
|
||||
@@ -452,7 +453,7 @@
|
||||
<pluginRepositories>
|
||||
<pluginRepository>
|
||||
<!-- necessary for utils -->
|
||||
<id>repository.plugin.springsource.release</id>
|
||||
<id>repository.springsource.maven.bundles.release</id>
|
||||
<name>SpringSource Maven Repository</name>
|
||||
<url>http://repository.springsource.com/maven/bundles/release</url>
|
||||
</pluginRepository>
|
||||
|
||||
@@ -39,7 +39,7 @@ public class RequestResult {
|
||||
public static RequestResult extractFrom(ClientResponse clientResponse) {
|
||||
final int status = clientResponse.getStatus();
|
||||
final URI location = clientResponse.getLocation();
|
||||
final String data = status != Response.Status.NO_CONTENT.getStatusCode() ? clientResponse.getEntity(String.class) : null;
|
||||
final String data = status != Response.Status.NO_CONTENT.getStatusCode() ? clientResponse.getEntity(String.class) : null;
|
||||
clientResponse.close();
|
||||
return new RequestResult(status, location, data);
|
||||
}
|
||||
|
||||
@@ -33,8 +33,8 @@ import java.util.concurrent.TimeUnit;
|
||||
|
||||
public class RestRequest {
|
||||
|
||||
public static final int CONNECT_TIMEOUT = (int) TimeUnit.SECONDS.toMillis(30);
|
||||
public static final int READ_TIMEOUT = (int) TimeUnit.SECONDS.toMillis(30);
|
||||
public static final int CONNECT_TIMEOUT = (int) TimeUnit.SECONDS.toMillis(300);
|
||||
public static final int READ_TIMEOUT = (int) TimeUnit.SECONDS.toMillis(300);
|
||||
private final URI baseUri;
|
||||
private final Client client;
|
||||
|
||||
|
||||
@@ -1,2 +1 @@
|
||||
org.neo4j.server.database.location=target/test-db
|
||||
#org.neo4j.server.webserver.maxthreads=2
|
||||
|
||||
@@ -129,24 +129,24 @@
|
||||
<dependency>
|
||||
<groupId>org.neo4j</groupId>
|
||||
<artifactId>server-api</artifactId>
|
||||
<scope>optional</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.tinkerpop.blueprints</groupId>
|
||||
<artifactId>blueprints-core</artifactId>
|
||||
<scope>optional</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
<dependency>
|
||||
<groupId>com.tinkerpop.blueprints</groupId>
|
||||
<artifactId>blueprints-neo4j-graph</artifactId>
|
||||
<scope>optional</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
<groupId>com.tinkerpop</groupId>
|
||||
<artifactId>gremlin</artifactId>
|
||||
<scope>optional</scope>
|
||||
<optional>true</optional>
|
||||
</dependency>
|
||||
|
||||
<dependency>
|
||||
|
||||
@@ -18,6 +18,7 @@ Import-Template:
|
||||
org.springframework.persistence.*;version="[1.0.0, 2.0.0)",
|
||||
org.springframework.data.neo4j.*;version="0",
|
||||
org.neo4j.*;version="0",
|
||||
org.neo4j.cypher.*;version="0";resolution:=optional,
|
||||
org.w3c.dom.*;version="0",
|
||||
org.aspectj.*;version="[1.6.5, 2.0.0)",
|
||||
org.apache.commons.logging.*;version="[1.1.1, 2.0.0)",
|
||||
@@ -33,9 +34,8 @@ Import-Template:
|
||||
javax.transaction.*;version="[1.0.1, 2.0.0)";resolution:=optional,
|
||||
com.tinkerpop.blueprints.*;version="[0.8,1.0)";resolution:=optional,
|
||||
com.tinkerpop.gremlin.*;version="[1.1,2.0)";resolution:=optional
|
||||
Excluded-Imports:
|
||||
org.neo4j.*.impl.*
|
||||
Import-Package:
|
||||
net.sf.cglib.proxy;version="[2.2.0,3.0.0)",
|
||||
net.sf.cglib.core;version="[2.2.0,3.0.0)",
|
||||
net.sf.cglib.reflect;version="[2.2.0,3.0.0)"
|
||||
DynamicImport-Package: *
|
||||
Reference in New Issue
Block a user