question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Non-resolvable parent POM for io.confluent:docker-utils

See original GitHub issue

Hi guys !

I’m trying to build image using makefile. I’ve got an error on the step debian/base/include/etc/confluent/docker/docker-utils.jar. I’m not able to find io.confluent:common:pom:5.0.0 on maven repository. I checked this URL : https://repo.maven.apache.org/maven2/io/confluent/ and I didn’t see any common folder available. I maybe missed a step 😄

If anyone has an idea of how to fix this, I will more than happy to hear it 😄

Complete Stack trace:

mkdir -p debian/base/include/etc/confluent/docker
cd java \
	&& mvn clean compile package assembly:single -DskipTests \
	&& cp target/docker-utils-5.0.0-jar-with-dependencies.jar ../debian/base/include/etc/confluent/docker/docker-utils.jar \
	&& cd -
[INFO] Scanning for projects...
Downloading: https://repo.maven.apache.org/maven2/io/confluent/common/5.0.0/common-5.0.0.pom
[ERROR] [ERROR] Some problems were encountered while processing the POMs:
[FATAL] Non-resolvable parent POM for io.confluent:docker-utils:[unknown-version]: Could not find artifact io.confluent:common:pom:5.0.0 in central (https://repo.maven.apache.org/maven2) and 'parent.relativePath' points at wrong local POM @ line 7, column 13
 @
[ERROR] The build could not read 1 project -> [Help 1]
[ERROR]
[ERROR]   The project io.confluent:docker-utils:[unknown-version] (/Users/jocelyndrean/dev/cp-docker-images/java/pom.xml) has 1 error
[ERROR]     Non-resolvable parent POM for io.confluent:docker-utils:[unknown-version]: Could not find artifact io.confluent:common:pom:5.0.0 in central (https://repo.maven.apache.org/maven2) and 'parent.relativePath' points at wrong local POM @ line 7, column 13 -> [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
make: *** [debian/base/include/etc/confluent/docker/docker-utils.jar] Error 1

Infos:

  • Branch: Master
  • Head Commit: c134a43

Issue Analytics

  • State:closed
  • Created 5 years ago
  • Comments:6

github_iconTop GitHub Comments

2reactions
jocelyndreancommented, Aug 20, 2018

Ok. I found the way to fix it with Jordan Moore. You have to add this section to your file java/pom.xml

<repositories>

  <repository>
    <id>confluent</id>
    <url>https://packages.confluent.io/maven/</url>
  </repository>

</repositories>
0reactions
OneCricketeercommented, Feb 14, 2020

Not clear why you need build the repo unless you’re contributing code, or what order you’re following to build (confluent/common and rest-utils are needed)

Read more comments on GitHub >

github_iconTop Results From Across the Web

Non-resolvable parent POM for io.confluent:kafka-connect ...
There is a Kafka docker is running in the same folder as the code. Any thoughts on how to solve this? Is there...
Read more >
Non-resolvable parent POM : Failure to find io.confluent ...
Hi, I'm facing an issue while building ksqldb. I have downloaded ksqldb 0.11.0. Maven version Apache Maven 3.6.3 ...
Read more >
How to build 0.22.0? - Google Groups
This is my first attempt at building a branch and it failed with missing dependencies issue. The master worked fine. I cloned the...
Read more >
Maven's Non-resolvable parent POM Problem
This means that the project the Nosheen is trying to get to compile has a parent project called "com.mycompany.samples:biometrics-samples:pom" ...
Read more >
[Java] Problem with maven build in docker-Apache Mail ...
However, it fails in the docker build [2], pointing to an error in the new pom.xml [3] file: *Non-resolvable parent POM for ...
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found