Saturday, March 14, 2020

HTTPS Required. and 'parent.relativePath' points at wrong local POM oozie

Problem: 

While building war file for oozie, I got error : HTTPS Required. and 'parent.relativePath' points at wrong local POM

Solution: 
Try to hit the below URL in any browser. It will return 501
Please try with https. It will download a pom.xml file:
Please add it (https://repo.maven.apache.org/maven2) in the setting.xml file / pom.xml
<repositories>
   <repository>
      <id>Central Maven repository</id>
      <name>Central Maven repository https</name>
      <url>https://repo.maven.apache.org/maven2</url>
   </repository>
</repositories>

No comments:

Post a Comment

Recent Post

Databricks Delta table merge Example

here's some sample code that demonstrates a merge operation on a Delta table using PySpark:   from pyspark.sql import SparkSession # cre...