While compile my application using gradle, it gives error 'package org.elasticsearch.common.io.stream does not exist'

Hi all, I'm new to java/gradle/Elasticsearch/application(crate-db). I am trying to create a development setup of CRATE-DB application. But when I am compiling the application by ./gradlew compilejava command it is returning error as below:

/home/crate/crate-3.0.5/core/src/main/java/io/crate/Build.java:24: error: package org.elasticsearch.common.io.stream does not exist
import org.elasticsearch.common.io.stream.StreamInput;
                                         ^
/home/crate/crate-3.0.5/core/src/main/java/io/crate/Build.java:25: error: package org.elasticsearch.common.io.stream does not exist
import org.elasticsearch.common.io.stream.StreamOutput;
.
.
.
> Task :core:compileJava FAILED

FAILURE: Build failed with an exception.

* What went wrong:
Execution failed for task ':core:compileJava'.
> Compilation failed with exit code 1; see the compiler error output for details.

Can you please suggest how can I resolve the above issue? It will help me alot.
Thanks:)

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.