Hello everyone,

I'm unable to `import org.apache.kafka.clients` when using gradle. The
error is package not found.

here is my build.gradle file

//build.gradle file
apply plugin: 'java'
repositories {
  mavenCentral()
}
dependencies {
compile group: 'org.apache.kafka', name: 'kafka-clients', version:
'0.10.0.0'
}

and the sample.java file

import org.apache.kafka.clients;
class Test {
        public void blah() {
               System.out.println("\n");
        }
}


Regards,
Sunil Mahendrakar

Reply via email to