I'm here reaching out for help because I have very little experience to Maven and Java, and little knowledge of environment variables. I attempt to set up GlueContext locally and went through a series of steps that involves Maven and JAVA_HOME on a Linux machine. I followed this tutorial, which involves the following three steps:
$ tar xvf apache-maven-3.6.0-bin.tar.gz -C $HOME/bin/
to extract the maven archive.$ export PATH="$HOME/bin/apache-maven-3.6.0/bin:$PATH"
$ export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-11.0.12.0.7-0.el7_9.x86_64
The further setup wasn't successful so I just ditched the process and went back to my usual mvn company project. But now, it seems like something was disrupted by one of (of all of) the three steps, and now when I execute mvn install
to my company project, it's giving me error that says
Non-resolvable parent POM for <company repo>
... and 'parent.relativePath' points at wrong local POM....
I must have messed up the environment by going through the steps, but I have no clue how to fix it. If you have any idea or insight, please kindly share. Thank you very in advance!