Skip to main content
Announcements
Qlik Connect 2024! Seize endless possibilities! LEARN MORE

Talend Data Integration: Unable to build Talend jobs using Azure DevOps

100% helpful (1/1)
cancel
Showing results for 
Search instead for 
Did you mean: 
Bo_Yuan
Support
Support

Talend Data Integration: Unable to build Talend jobs using Azure DevOps

Last Update:

Apr 16, 2024 10:57:22 PM

Updated By:

Shicong_Hong

Created date:

Apr 16, 2024 10:53:07 PM

Azure DevOps pipelines fails with the following error when building Talend Jobs.

[ERROR] Failed to execute goal on project job_AladdinToBusiness_000020_profitAndLossFileChild: Could not resolve dependencies for project org.example.tcorp_talend_ims.job:job_AladdinToBusiness_000020_profitAndLossFileChild:jar:0.2.0: Failed to collect dependencies at org.talend.components.lib:talend-proxy:jar:1.0.0: 

Cause

Maven blocks external HTTP repositories by default since version 3.8.1, for more details, please read Release Notes – Maven 3.8.1.

 

Resolution

Open the Maven settings file settings.xml located in ${maven.home}/conf/ or ${user.home}/.m2/, add a dummy mirror with the id maven-default-http-blocker to override the existing one. This disables HTTP blocking for all repositories.

 

<mirrors>
<mirror>
<id>maven-default-http-blocker</id>
<mirrorOf>dummy</mirrorOf>
<name>Dummy mirror to override default blocking mirror that blocks http</name>
<url>http://0.0.0.0/</url>
</mirror>
</mirrors>
</settings>

 

 

Related Content

Disable maven blocking external HTTP repositories

Maven Settings References

 

Environment

Talend Data Integration 

Labels (1)
Contributors
Version history
Last update:
2 weeks ago
Updated by: