How can I download a LCA jar file when I am getting a "connection isn't private" error?

Question

I am trying to download jar files from life-cycle-sample: https://repo.dev.reltio.com/content/repositories/public , but I am getting error as shown in below snapshot.

 

 

Answer 


a.  Please clear your cache and open it in incognito mode.
b.  Follow this link to make your connection private as defined in this link.
c.  Re-create a new Life Cycle Action

  • Create a new Java project based on the source files of the current repository "life-cycle-sample"
  • Change the GroupId, ArtifactId, and Version inside the pom.xml file.
  • Add the settings.xml file to the .m2 folder of the current user - Download file

 

#!xml
<?xml version="1.0" encoding="UTF-8"?>
<settings xmlns="http://maven.apache.org/SETTINGS/1.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/SETTINGS/1.0.0 http://maven.apache.org/xsd/settings-1.0.0.xsd">
<servers>
<server>
<id>reltio-libs-public</id>
<username>read.only.life-cycle-framework</username>
<password>wW0Rvf37EBgpY22w</password>
</server>
</servers>
</settings>
  • Build the project (for example, execute mvn clean package) to get a JAR file.

 

Was this article helpful?
0 out of 0 found this helpful

Comments

0 comments

Please sign in to leave a comment.