Не удалось найти артефакт io.confluent: kafka-rest-parent: pom: 5.4.0-SNAPSHOT и точки parent.relativePath в ни одной локальной - PullRequest
1 голос
/ 31 мая 2019

Я использую Maven 3 для запуска приложения, но получаю следующую ошибку:

[ERROR] [ERROR] Some problems were encountered while processing the POMs:
[FATAL] Non-resolvable parent POM for io.confluent:kafka-rest:[unknown-version]: Could not find artifact io.confluent:kafka-rest-parent:pom:5.4.0-SNAPSHOT and 'parent.relativePath' points at no local POM @ line 7, column 12
 @ 
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]   
[ERROR]   The project io.confluent:kafka-rest:[unknown-version] (D:\Self\kafka-rest\pom.xml) has 1 error
[ERROR]     Non-resolvable parent POM for io.confluent:kafka-rest:[unknown-version]: Could not find artifact io.confluent:kafka-rest-parent:pom:5.4.0-SNAPSHOT and 'parent.relativePath' points at no local POM @ line 7, column 12 -> [Help 2]
[ERROR] 
[ERROR] To see the full stack trace of the errors, re-run Maven with the -e switch.
[ERROR] Re-run Maven using the -X switch to enable full debug logging.
[ERROR] 
[ERROR] For more information about the errors and possible solutions, please read the following articles:
[ERROR] [Help 1] http://cwiki.apache.org/confluence/display/MAVEN/ProjectBuildingException
[ERROR] [Help 2] http://cwiki.apache.org/confluence/display/MAVEN/UnresolvableModelException

здесь поделиться pom .xml родительский элемент

http://maven.apache.org/maven-v4_0_0.xsd">

    <modelVersion>4.0.0</modelVersion>

   <parent>
        <groupId>io.confluent</groupId>
        <artifactId>kafka-rest-parent</artifactId>
        <version>5.4.0-SNAPSHOT</version>
    </parent>

    <artifactId>kafka-rest</artifactId>
    <packaging>jar</packaging>
    <name>kafka-rest</name>
    <description>
        The Kafka REST Proxy provides a RESTful interface to a Kafka cluster, making it easy to
        produce and consume messages, view the state of the cluster, and perform administrative
        actions without using the native Kafka protocol or clients.
    </description>

1 Ответ

1 голос
/ 01 июня 2019

Чтобы построить любой Confluent-проект из главной ветви, вы должны построить его родительские зависимости.Вы не найдете SNAPSHOTS в загружаемом каталоге

Это означает, что нужно проверить исходный код Kafka, использовать Gradle для установки его текущего снимка, затем Confluent common library, затем Confluent Rest utils, а затем Registry Schema (для Avroконвертер) и , затем наконец-то создайте REST-прокси.

https://github.com/confluentinc/kafka-rest/wiki/FAQ

Если вы просто хотите запустить REST-прокси, загрузите последнюю версию Confluent Platform и настройтеоставьте конфигурационный файл прокси, чтобы он указывал на любых существующих брокеров Kafka

...