How to import Apache Flink SNAPSHOT artifacts?

835 Views Asked by At

I want to add the documents of Gelly to my project, but it gives me this error:

Sources not found for: org.apache.flink:flink-gelly_2.10:1.2-SNAPSHOT

This is in my pom.xml

<dependency>
    <groupId>org.apache.flink</groupId>
    <artifactId>flink-gelly_2.10</artifactId>
    <version>1.2-SNAPSHOT</version>
</dependency>

I tried looking for a different version of gelly to solve this issue but couldn't find any. is there any other way to get the documentation?

1

There are 1 best solutions below

4
On

Apache publishes SNAPSHOT artifacts only to a dedicated Maven repository. Note that these artifacts are only meant for development purposes. They are not part of an official Apache Flink release!

You have to add the following repository configuration to your pom.xml to receive SNAPSHOT artifacts:

<repositories>
    <repository>
      <id>apache.snapshots</id>
      <name>Apache Development Snapshot Repository</name>
      <url>https://repository.apache.org/content/repositories/snapshots/</url>
      <releases><enabled>false</enabled></releases>
      <snapshots><enabled>true</enabled></snapshots>
   </repository>
</repositories>

Alternatively, you can download the latest Flink code and build it on your local machine.