Linked Questions
19 questions linked to/from Maven: Failed to read artifact descriptor
341 votes
25 answers
643k views
Maven error "Failure to transfer..."
I am trying to set up a project using Maven (m2eclipse), but I get this error in Eclipse: Description Resource Path Location Type Could not calculate build plan: Failure to transfer ...
225 votes
21 answers
289k views
How to disable maven blocking external HTTP repositories?
Maven blocks external HTTP repositories by default since version 3.8.1 (see https://maven.apache.org/docs/3.8.1/release-notes.html) Is there a way to disable that or to exempt a repository from this ...
16 votes
1 answer
7k views
What does the IntelliJ 2017.2 setting for Maven “Always update snapshots” do?
This Question is answered successfully by checking Preferences/Settings > Build, Execution, Deployment > Build tools > Maven > Always update snapshots (checkbox) in IntelliJ IDEA. ➠What ...
1 vote
5 answers
14k views
Dependency 'com.h2database:h2:1.4.200' not found, Failed to read artifact descriptor for com.h2database:h2:jar
I am building backend application support using Springboot and trying to use h2 database in-built with Spring. However, when I add the below h2 dependency in pom.xml, it's erroring out. Error Failed ...
0 votes
1 answer
10k views
Maven fails to update to selenium 2.44.0
I am trying to update my selenium to the latest version here is my xml <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation=...
2 votes
2 answers
3k views
Intellij-idea cannot resolve spring-boot-starter-data-mongodb
I created a spring boot maven project. Everything was fine until I added spring-boot-starter-data-mongodb to the dependencies like below <dependency> <groupId>org....
0 votes
3 answers
2k views
How to overwrite version of spring boot BOM
I have a problem with updating Log4j versions. In my pom.xml file I updated the version like this: <properties> // other stuff // <org.apache.logging.log4j.version>2.16.0&...
1 vote
3 answers
2k views
Maven dependencies jars not getting updated or error in Eclipse
I am beginner in Maven development, Need our help to fix this issue. I can see jars are not available at .m2\repository\org\springframework\spring-context\3.1.0.RELEASE only below jars are avaialble ...
1 vote
0 answers
2k views
Access denied to central maven repository
I have a server which is behind a security proxy. The security proxy is opened for https://repo.maven.apache.org. However, when I try to download a plugin. E.g. soapui-maven-plugin:5.5.0 I receive an ...
0 votes
0 answers
2k views
Failed to execute goal on project Could not resolve dependencies for project Failed to collect dependencies
I'm having issues with build and I'm getting Failed to execute goal on project error. I see two errors I think? What does each one of these mean? Could not resolve dependencies for project Failed to ...
3 votes
0 answers
2k views
How to get the maven shade plugin to use local modules in a multi-module project?
I'm trying to generate an uber jar in a multi module project with the maven-shade plugin with no success. Versions: maven v3.9, maven-shade v3.0 The project looks as follow: main |- library |- ...
0 votes
1 answer
2k views
Drools 6.3.0 Final KieScanner MavenEmbedderException
I just start learn Drools, and I met a problem. I am working on a project that involves Java 7 and Drools 6.3.0.Final. I want load rules by KieScanner, the rule jar is droolsrules-1.0.0-RELEASE.jar: ...
0 votes
0 answers
1k views
Plugin net.masterthought:maven-cucumber-reporting:5.0.0 Failed to read artifact descriptor for net.masterthought:maven-cucumber-reporting
I am getting error like Plugin could not be resolved. Ensure the plugin's groupId, artifactId and version are present. Additional information: Plugin net.masterthought:maven-cucumber-reporting:5.0.0 ...
2 votes
1 answer
886 views
Maven error when trying to add google vision tutorial libraries in Eclipse
I am trying to follow along this tutorial. I am using Eclipse and Maven 3.3.3. So I start by adding the necessary dependencies in the pom file. These dependencies work without any issues: <...
0 votes
1 answer
1k views
lombok dependency import error in intelliJ
Recently, I am reading Spring In Action. When it came to using lombok dependency, I've got stuck. When I import lombok like it is described in the book: <dependency> <groupId>org....