0
I’m building a pipeline in Azure Devops to build java projects with Maven.
When trying to download libs in Artifacts the following error appears
Caused by: org.eclipse.Aether.resolution.Artifactresolutionexception: Could not find Artifact com.oracle:ojdbc14:jar:10.2.0.4.0 in Azure.maven.XXX.com.br
But when consulting in Artifacts I find the lib
Does anyone know what to do for Maven to find that lib?
Thank you for Reply , I tried to do what you said, it worked for all other artifacts except for those of the oracle, To solve the problem I made a provisionally fixed Alternative Solution (Gambiarra ) which consists of going up the oracle lib to a separate file and build time using <dependency> <groupid>com.oracle</groupid> <artifactId>ojdbc14</artifactId> <version>10.2.0.4.0</version> <Scope>system</Scope> <systemPath>${basedir}/src/jar/ojdbc14-10.2.0.4.0.jar</systemPath> </dependency>
– Filipe Rodrigues