Search code examples
maven-3apache-drill

Missing artifact for apache-drill


I am following documentation. As metioned there, I used the following dependency:

<dependency>
    <groupId>org.apache.drill.exec</groupId>
    <artifactId>drill-java-exec</artifactId>
    <version>1.0.0</version>
</dependency>

While building maven project, I got an error:

Missing artifact org.apache.drill.exec:drill-java-exec:jar:1.0.0

How to resolve this?


Solution

  • In the maven central repository, I only see version 1.1.0 not 1.0.0

    <dependency>
        <groupId>org.apache.drill.exec</groupId>
        <artifactId>drill-java-exec</artifactId>
        <version>1.1.0</version>
    </dependency>
    

    Maybe you need to change your version.