Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved
Asked Answered
S

31

201
org.apache.maven.plugin.PluginResolutionException: Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.5
    at org.apache.maven.plugin.internal.DefaultPluginDependenciesResolver.resolve(DefaultPluginDependenciesResolver.java:129)
    at org.eclipse.m2e.core.internal.project.registry.EclipsePluginDependenciesResolver.resolve(EclipsePluginDependenciesResolver.java:48)
    at org.apache.maven.plugin.internal.DefaultMavenPluginManager.getPluginDescriptor(DefaultMavenPluginManager.java:142)
    at org.apache.maven.plugin.internal.DefaultMavenPluginManager.getMojoDescriptor(DefaultMavenPluginManager.java:261)
    at org.apache.maven.plugin.DefaultBuildPluginManager.getMojoDescriptor(DefaultBuildPluginManager.java:185)
    at org.apache.maven.lifecycle.internal.DefaultLifecycleExecutionPlanCalculator.setupMojoExecution(DefaultLifecycleExecutionPlanCalculator.java:152)
    at org.eclipse.m2e.core.internal.embedder.MavenImpl.setupMojoExecution(MavenImpl.java:386)
    at org.eclipse.m2e.core.internal.project.registry.ProjectRegistryManager.setupMojoExecution(ProjectRegistryManager.java:865)
    at org.eclipse.m2e.core.internal.project.registry.MavenProjectFacade.getMojoExecution(MavenProjectFacade.java:355)
    at org.eclipse.m2e.core.project.configurator.AbstractCustomizableLifecycleMapping.getBuildParticipants(AbstractCustomizableLifecycleMapping.java:66)
    at org.eclipse.m2e.core.project.configurator.AbstractLifecycleMapping.configure(AbstractLifecycleMapping.java:87)
    at org.eclipse.m2e.core.internal.project.ProjectConfigurationManager.updateProjectConfiguration(ProjectConfigurationManager.java:414)
    at org.eclipse.m2e.core.internal.project.ProjectConfigurationManager.updateProjectConfiguration(ProjectConfigurationManager.java:351)
    at org.eclipse.m2e.core.ui.internal.UpdateMavenProjectJob.runInWorkspace(UpdateMavenProjectJob.java:74)
    at org.eclipse.core.internal.resources.InternalWorkspaceJob.run(InternalWorkspaceJob.java:38)
    at org.eclipse.core.internal.jobs.Worker.run(Worker.java:54)
Caused by: org.sonatype.aether.resolution.ArtifactDescriptorException: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.5
    at org.apache.maven.repository.internal.DefaultArtifactDescriptorReader.loadPom(DefaultArtifactDescriptorReader.java:296)
    at org.apache.maven.repository.internal.DefaultArtifactDescriptorReader.readArtifactDescriptor(DefaultArtifactDescriptorReader.java:186)
    at org.sonatype.aether.impl.internal.DefaultRepositorySystem.readArtifactDescriptor(DefaultRepositorySystem.java:279)
    at org.apache.maven.plugin.internal.DefaultPluginDependenciesResolver.resolve(DefaultPluginDependenciesResolver.java:115)

I have read where many people were able to solve this by:

I am new to Maven so please excuse any of my ignorance.

This project is working on another machine, and just pulled it down from the repository on this one, with the same version of eclipse and m2e plugin installed. I have been fooling with this for over 10 hours now and it is driving me nuts (Maven has been nothing but headaches for me so far...)

EDITS

After looking closer I did notice that it is not downloading the .jar files into the local repository... I am not sure if that is something obvious...

I am not given the option to add Maven Dependencies to the build path.

Signore answered 21/9, 2012 at 15:50 Comment(1)
None of the answers fixed it for me but I found the answer in this post: https://mcmap.net/q/129597/-maven-in-5-min-not-working, especially Solution #1.Jeggar
C
166

I had the exact same problem.

[ERROR] Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-resources-plugin:jar:2.5: Failure to find org.apache.maven.plugins:maven-resources-plugin:pom:2.5 in http://repo.maven.apache.org/maven2 was cached in the local repository, resolution will not be reattempted until the update interval of central has elapsed or updates are forced -> [Help 1]
...

Had maven 3.0.5, eclipse Kepler with JBoss Dev Studio 7 installed. Computer sitting on internal network with proxy to the internet. Here's what I did.

0. Check the maven repositiory server is up

1. Check Proxy is set up and working

First I thought it was a proxy problem, I made sure that maven settings.xml contained the proxy settings (settings.xml can exist in two places one in MAVEN_HOME. The other in %userprofile%.m2\ with the later having higher precedence):

<proxy>
  <id>optional</id>
  <active>true</active>
  <protocol>http</protocol>
  <username>optional-proxyuser</username>
  <password>optional-proxypass</password>
  <host>proxy.host.net</host>
  <port>80</port>
  <nonProxyHosts>local.net|some.host.com</nonProxyHosts>
</proxy>

and checked that the proxy is working by trying to telnet to it:

telnet [proxy] [port number]

2. Check not Eclipse Issue

ran 'mvn compile' at command line level outside of eclipse - same issue.

If 'mvn compile' worked. But it doesn't work using the maven plugin in eclipse, see Maven plugin not using eclipse's proxy settings

3. Check not Cache Issue Deleted all contents in my local maven repository. (Default location: ~/.m2/repository) And then reran maven - same issue came up.

4. What worked for me

Automatically download & install missing plugin: By declaring the missing plugin in the POM file build section for pluginManagement Maven will automatically retrieve the required plugin. In the POM file, add this code for the version of the plugin you require:

  <build>
        <pluginManagement>
          <plugins>
            <plugin>
              <artifactId>maven-resources-plugin</artifactId>
              <version>2.7</version>
            </plugin>           
          </plugins>
        </pluginManagement>   
    </build>

Manually install missing plugin: I went to http://mvnrepository.com/artifact/org.apache.maven.plugins/maven-resources-plugin/2.5 and downloaded maven-resources-plugin-2.5.jar and maven-resources-plugin-2.5.pom . Copied it directly into the maven repository into the correct folder ( ~/.m2/repository/org/apache/maven/plugins/maven-resources-plugin/2.5) and reran 'mvn compile'. This solved the problem.


Edit1

Following this I had another two problem with 'mvn install':

The POM for org.apache.maven.plugins:maven-surefire-plugin:jar:2.10 is missing, no dependency information available

The POM for org.apache.maven.plugins:maven-install-plugin:jar:2.3.1 is missing, no dependency information available

I approached this problem the same way as above, downloading from http://mvnrepository.com/artifact/org.apache.maven.plugins/maven-surefire-plugin/2.10 and http://mvnrepository.com/artifact/org.apache.maven.plugins/maven-install-plugin/2.3.1

Cuthbertson answered 23/7, 2013 at 5:40 Comment(10)
I was about to follow your suggestions, but at the last minute I tried 'mvn install'. This worked, which suggests the root cause is a problem with the servers for the default repository.Weirdo
lol, good point I'll add that in. For me, I tried it as well, but was able to access the default maven repository manually online. It's weird.Cuthbertson
Thank you, my problem was precisely with the POM file! I think this is because I installed Maven 2.6 outside of Eclipse, in my computer. In the same folder for Maven 2.6, both JAR and POM files are there while only the JAR file is in place for Maven 2.5Gober
@Cuthbertson Could you please explain what do you mean by maven repository server ? I am new to Maven too so please excuse my ignorance ...Confute
@Akari, check out maven.apache.org/guides/introduction/… there could be local maven repository, maven repository server in your internal corporate network, and public maven repository.Cuthbertson
In my case, I checked ~/.m2/repository/org/apache/maven/plugins/maven-resources-plugin/2.6 and there was no pom file at all!! It really helped. Thanks a bunch!Tegantegmen
I think you should update your answer to also include the fact that deleting everything in the local maven repository could also be a solution.Recalescence
adding plugin maven-resources-plugin in pom.xml worked for me.Plethora
Thx. Besides, check your proxy settings... it was my problem because mvn will intend to download dependencies, and behind a proxy also causes this error. Go to your %userprofile%\.m2\ , create a settings.xml, and put your proxy settings there. Reference: maven.apache.org/guides/mini/guide-proxies.htmlFidelis
@DonalLafferty where do i have to give that command "mvn install"?Reverberation
E
137

I had the exact same problem and since I read somewhere that the error was caused by a cached file, I fixed it by deleting all the files under the .m2 repository folder. The next time I built the project I had to download all the dependencies again but it was worth it - 0 errors!!

Emulation answered 28/9, 2012 at 11:47 Comment(10)
I did what you have said here. It seems to have resolved my problem.Jehovist
Similar problem here - this solution seems to have fixed it for me as well.Custody
Thank you! this was driving me crazy, I deleted everything in .m2 except the cache file.Natalia
Same was for me. But I started mvn with debug option and I noticed that a pom file in the local repository was corrupted. Deleting that file and running again mvn resulted in that file being downloaded again and everything worked.Recalescence
just deleted everything from org/apache/maven/plugins/maven-resources-plugin/2.5 folder, and ran mvn install again. It works for me.Barb
Thanks. Followed your instructions. The problem has been resolved.Trajan
In Eclipse, I think this can also be achieved by right click on the project -> Maven -> Update project and checking "Force Update of Stapshots/Releases", click OK. All dependencies were downloaded with 0 errors.Corves
I was able to delete only the directory for the failing package, rather than the whole .m2 folder.Dyandyana
Short and simple, this must be selected as answer.Bedford
this is exactly what i wantEpicalyx
P
20

Couple of things to try:

  1. Doublecheck the location of the local artifact repo configured in your settings.xml file (at the following location {your home folder}/.m2/settings.xml). Are you sure the local repo is where you think it is? (Yes, a mistake I've made in the past...)
  2. Remove entire contents of artifact repo on the new build machine (or at least anything related to Maven). You mentioned doing some artifact repo cleanup but I'm not sure what directory(ies) you removed. I've run into weird issues like these when a jar was corrupted.
  3. Make sure you have enough disk space/quota for the local artifact repo. I have run into weird issues when I didn't have a large enough quota to hold all the artifacts, likely caused by partially downloaded jar files.
  4. Try running with plain Maven on the command line; take Eclipse and m2e out of the equation. mvn -U dependency:resolve should do it. The -U forces Maven to download no matter what your repository update policies are. Add -X to get detailed debug logging.
  5. Copy settings.xml from MAVEN_HOME\conf\ to USER_HOME.m2. Add proxies (if needed) in case you are behind a proxy server.
Penrod answered 26/9, 2012 at 14:36 Comment(1)
+1. The first check takes care of most cases especially when we have a specific mvn settings file. For eclipse users, quick fix is to point the correct settings file under Window >Preferences > Maven > User Settings.Cigarette
E
18

Follow easy steps to resolved the below issue: Could not calculate build plan: Plugin org.apache.maven.plugins:maven-resources-plugin:2.5 or one of its dependencies could not be resolved: Failed to read artifact description for org.apache.maven.plugins:maven-ar-plugin:ar:2.4 in eclipse

enter image description here

Solution: Step1: enter image description here

Step2:

enter image description here

Issue solved

enter image description here

Extern answered 23/2, 2020 at 12:37 Comment(1)
Force Update fixed my issue.Pears
S
9

i faced the same issue while using eclipse kepler and maven version 3.2,

while building the project, it showed me the same error in eclipse

there are two versions (2.5 and 2.6) of plugin under

.m2/repository/org/apache/maven/plugins/maven-resources-plugin/

i removed 2.5 version then it worked for me

Svensen answered 23/6, 2014 at 14:21 Comment(0)
L
8

My problem was the location of the config file.

In eclipse settings (Windows->preferences->maven->User Settings) the default config file for maven points to C:\users\*yourUser*\.m2\settings.xml. If you unzip maven and install it in a folder of your choice the file will be inside *yourMavenInstallDir*/conf/, thus probably not where eclipse thinks (mine was not). If this is the case maven won't load correctly. You just need to set the "User Settings" path to point to the right file.

Lindgren answered 18/7, 2013 at 13:26 Comment(0)
H
7

It appears that there can be a lot of different causes for this issue. I experienced it after installing a new version of Eclipse (Luna). Command-line maven worked fine, but Eclipse had build issues.

I use a Certificate Authority in my JRE. This is important because this provides my authentication when downloading Maven resources. Even though my project was pointing to the appropriate JRE inside of Eclipse - Eclipse was running using a different JRE (this is apparent looking at the Java process properties in Windows task manager). My solution was to add the following in my eclipse.ini and explicitly define the JRE I want to use.

-vm
C:\Program Files\Java\jdk1.7.0_51\bin\javaw.exe 
Homothallic answered 4/10, 2014 at 3:11 Comment(0)
Q
5
his issue is happening due to change of protocol from http to https for central repository. please refer following link for more details. https://support.sonatype.com/hc/en-us/articles/360041287334-Central-501-HTTPS-Required 

In order to fix the problem, copy following into your pom.ml file. This will set the repository url to use https.

<repositories>
        <repository>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
            <id>central</id>
            <name>Central Repository</name>
            <url>https://repo.maven.apache.org/maven2</url>
        </repository>
    </repositories>
    <pluginRepositories>
        <pluginRepository>
            <releases>
                <updatePolicy>never</updatePolicy>
            </releases>
            <snapshots>
                <enabled>false</enabled>
            </snapshots>
            <id>central</id>
            <name>Central Repository</name>
            <url>https://repo.maven.apache.org/maven2</url>
        </pluginRepository>
    </pluginRepositories>
Quieten answered 23/1, 2020 at 5:48 Comment(0)
P
4

You should check Force Update Snapshots/Releases when updating project with maven.It worked for me :-). Force Update Snapshots/Releases

Picul answered 29/5, 2018 at 20:0 Comment(0)
J
3

Try to delete all dirs in /usr/share/maven-repo - of course then maven will die so you must re-install and try again. In my case re-install from maven ver.3. to maven2 with deleting all repositories helped.

I tried by deleting all from .m2 but that didn't help.

Jsandye answered 16/11, 2012 at 15:21 Comment(2)
This question has an accepted answer and your response is to tell him to delete all his directories? Make sure to read the entire question and answers before answering.Stretchy
@durron597: Martijn's solution is actually pretty close to the accepted answer. He's adding more info to the accepted ans.Examine
A
3

Some files where missing at your local repository. Usually under ${user.home}/.m2/repository/

Neets answer solves the problem. However if you dont want do download all the dependencies to your local repository again you could add the missing dependency to a project of yours and compile it.

Use the maven repository website to find the dependency. In your case http://mvnrepository.com/artifact/org.apache.maven.plugins/maven-resources-plugin/2.5 was missing.

Copy the listed XML to the pom.xml file of your project. In this case

<dependency>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-resources-plugin</artifactId>
    <version>2.5</version>
</dependency>

Run mvn compile in the root folder of the pom.xml. Maven will download all missing dependencies. After the download you can remove the added dependency.

Now you should be able to import the maven project or update the project without the error.

Asarum answered 25/10, 2013 at 18:26 Comment(0)
B
3

What I found out is that while m2e is looking for v2.5 by default, my local repo has 2.6 and no 2.5.

Without going into investigation of how this came about simply adding the dependency to pom solved the problem

<dependency>
    <groupId>org.apache.maven.plugins</groupId>
    <artifactId>maven-resources-plugin</artifactId>
    <version>2.6</version>
</dependency>

This can be removed after running a build once

Buryat answered 7/2, 2014 at 19:47 Comment(0)
D
2

A more subtle reason for this could be a Settings.xml file which has a space in the first line before the doctype

Dimension answered 27/3, 2013 at 17:52 Comment(0)
C
2

Hopefully I'm not late for the party.

Encountered this using Eclipse Kepler and Maven 3.1.

The solution is to use a JDK and not a JRE for your Eclipse project. Make sure to try maven clean and test from eclipse just to download missing jars.

Cilia answered 21/8, 2013 at 9:31 Comment(1)
I had this problem for a long time and could not figure it out until I started looking into my system variables. Turns out I had my JAVA_HOME set to the JRE, and not the JDK.Hachmann
C
1

I had the same problem but with an other cause. The solution was to deactivate Avira Browser Protection (in german Browser-Schutz). I took the solusion from m2e cannot transfer metadata from nexus, but maven command line can. It can be activated again ones maven has the needed plugin.

Correct answered 11/8, 2013 at 16:2 Comment(0)
W
1

Most people will tell you to check your proxy settings or delete and re-add artifacts, but I will stay away from that and give another suggestion in case that doesn't turn out to be your problem. It could be your mirror settings.

If you use maven at the office then there's a good chance maven is configured to look for your company's internal maven repository. If you're doing some work from home and you are not connected to the network this could be the problem. An obvious solution might be VPN to the office to get visibility to this repo. Another way around this is to add another mirror site to your /User/.m2/settings.xml file so if it fails to find it on your office network it will try public repo.

<mirror>
    <id>Central</id>
    <url>http://repo1.maven.org/maven2</url>
    <mirrorOf>central</mirrorOf>
    <!-- United States, St. Louis-->
</mirror>

For other maven repositories take a look here: http://docs.codehaus.org/display/MAVENUSER/Mirrors+Repositories

Walhalla answered 3/11, 2013 at 4:58 Comment(0)
F
1

In my case I'm using an external maven installation with m2e. I've added my proxy settings to the external maven installation's settings.xml file. These settings haven't been used by m2e even after I've set the external maven installation as default maven installation.

To solve the problem I've configured the global maven settings file within eclipse to be the settings.xml file from my external maven installation.

Now eclipse can download the required artifacts.

Finbar answered 3/9, 2014 at 11:43 Comment(0)
L
1

After entering your proxy settings in settings.xml

<proxies>
<!-- proxy 
 | Specification for one proxy, to be used in connecting to the network.
 |  -->
<proxy>
  <id>optional</id>
  <active>true</active>
  <protocol>http</protocol>
  <username>DOMAIN\YOURID</username>
  <password>123456</password>
  <host>proxy.company.com</host>
  <port>8080</port>
  <nonProxyHosts>local.net|some.host.com</nonProxyHosts>
</proxy>

</proxies>

Check whether the below tag is having the value false in settings.xml

<offline>false</offline>

This helped me.

Livingston answered 30/7, 2015 at 11:11 Comment(0)
M
1

In addition to what @JackDev replies, what also solved my problem was to

1) Install the jdk under directory with no spaces:

C:/Java

Instead of

C:/Program Files/Java

This is a known issue in Windows. I fixed JAVA_HOME as well

2) Install maven as in Java case, under C:/Maven. Fixed the M2_HOME accordingly.

3) I java 7 and java 8 on my laptop. So I defined the jvm using eclipse.ini. This is not a mandatory step if you don't have -vm entry in your eclipse.ini. I updated:

C:/Java/jdk1.7.0_79/jre/bin/javaw.exe

Instead of:

C:/Java/jdk1.7.0_79/bin/javaw.exe

Good luck

Megdal answered 15/6, 2016 at 11:24 Comment(0)
P
1

If you've configured a repository in your maven's settings.xml, check if you've access to it.

When I had this problem, there were enterprise repositories configured in settings.xml but I was out of the company.

Pectinate answered 25/8, 2016 at 11:33 Comment(0)
I
0

JackDev's option 3 works for me after I changed the default repository to another folder.

Below is what I see after M2E plugin automatically download the maven-resources-plugin-2.6. Maybe this could give you some hint if you want to take the manual approach. The necessary files can be downloaded from here: https://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-resources-plugin/2.6/

enter image description here

Intrust answered 15/12, 2014 at 5:56 Comment(0)
L
0

If you have a proxy, you also have to clear SOCKS in

Window > Preferences > Network Connections.
Langur answered 7/4, 2015 at 7:59 Comment(0)
C
0

I was getting the same issue.

I just installed the m2e (Maven2Eclipse)plugin from below site:

http://www.eclipse.org/m2e/

Eclipse>Help>Install New Software>Available Software Sites>Add

Name: m2e (any name is OK)
Location:m2e - http://download.eclipse.org/technology/m2e/releases/

Under Install Window> Work with:

Select this new location and Add all the plugins that appear. Eclipse restart and it was running properly with no previous errors.

Connie answered 28/9, 2016 at 6:7 Comment(0)
R
0

If your working at a company, they may be preventing you from downloading outside software and installing it. You may need to install the plugins manually or repoint to an internal mirror repository.

Reaves answered 6/9, 2017 at 16:25 Comment(0)
S
0

Try downloading a different version of maven. I had the same problem with maven 3.5.2 , I solved my problem just downloading maven 3.0.4

Suppositious answered 26/2, 2018 at 14:57 Comment(0)
H
0

Very old stuff.

Got it solved fixing the localRepository in settings.xml. This file was copied from my other computer and the path of the .m2 repository wasn't the same.

<?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">

  <localRepository>C:\Users\foo\.m2</localRepository>

</settings>
Haight answered 11/6, 2018 at 15:5 Comment(0)
E
0

I could solve the issue with the following steps

  1. Install Maven separately
    https://www.mkyong.com/maven/how-to-install-maven-in-windows/
  2. Set the external Maven installation in Eclipse
    enter image description here


3. Set the proxy in settings.xml in Maven installation
(C:\path\apache-maven-3.6.0\conf)

<proxy>
 <id>optional</id>
 <active>true</active>
 <protocol>http</protocol>
 <username>optional-proxyuser</username>
 <password>optional-proxypass</password>
 <host>proxy.host.net</host>
 <port>80</port>
 <nonProxyHosts>local.net|some.host.com</nonProxyHosts>
</proxy>
  1. Update the Maven User Settings enter image description here

  2. Update Maven project
    enter image description here

Ecstatics answered 5/3, 2019 at 13:53 Comment(0)
H
0

I have shifted my project to a different machine, copied all my maven libraries from old machine to new machine, did Right click on my project >> Maven >> Update Project. And then built my project. In addition to this, I have also done this one step which is shown in screenshot. And that's all it worked!!

Go to Window --> Preferences --> Maven --> User Setting, make sure you have these settings..
enter image description here

Also Right click on your project --> Properties --> Maven, and make sure you have the path here to maven repository..
enter image description here

Hygroscopic answered 7/6, 2019 at 7:22 Comment(0)
C
0

I am facing the same issue and none of above works, like by updating the MVN also same error, by building is also same, entered details in settings.xml though even same issue.

After that again I tried and did something different which did not did before and it works.

Its simple, I clicked the force update while updating the Mvn project. By right clicking on the pom file, there is option under Maven, "Update Project" and it open up one popup to select update option. PLEASE MAKE SURE FORCE UPDATE IS CHECKED, by default is unchecked. And bingo, that works like charm!

Clausen answered 27/8, 2019 at 16:33 Comment(0)
J
0

To solve this issue I tried below method : (I was working on eclipse IDE)

  1. Go to location : C:\User\local.m2\setting.xml
  2. Open setting.xml file in any editor.
  3. Comment the proxy setting like I did(see below setting.xml file).
  4. Then go to eclipse & perform Maven Update from :right clicking on your solution folder(Your Project)->select Maven->Update Project.
  5. Hope it will work for you as like me.

<?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">
<!--
    <proxies>
        <proxy>
            <id>optional</id>
            <active>true</active>
            <protocol>http</protocol>
            <username>proxyuser</username>
            <password>proxypass</password>
            <host>proxy.host.net</host>
            <port>80</port>
        <nonProxyHosts>local.net|some.host.com</nonProxyHosts>  
        </proxy>
    </proxies>
    -->
</settings>
Jabot answered 3/7, 2021 at 12:22 Comment(0)
M
0

I ran into this same problem with Eclipse on Ubuntu 18.04. I tried:

  1. Setting up the settings.xml file with no result;
  2. Forcing rebuild of the project, same error;
  3. Working with the suggestion of @JackDev. But when I went to download each resource individually, I noticed that wget was failing because of a self-signed certificate at the https://repo1.maven.org. This gave a clue of the cause.

I temporarily turned off the virus defenses of the server and was able to build properly from inside of Eclipse. I mention this here in case someone else is seeing the same restriction.

Marqueritemarques answered 17/11, 2021 at 15:32 Comment(0)

© 2022 - 2024 — McMap. All rights reserved.