Maven Project pom.xml error | Selenium Forum
A
Arun Gutta Posted on 23/01/2020

Whenever i create a new Maven project, I am getting the below error in the pom.xml file.

Am getting error in the first line under maven-4.00.xsd as highlighted below -

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">

 

CoreException: Could not calculate build plan: Plugin org.apache.maven.plugins:maven-compiler-plugin:2.5.1 or one of its dependencies could not be resolved: Failed to read artifact descriptor for org.apache.maven.plugins:maven-compiler-plugin:jar:2.5.1: ArtifactResolutionException: Failure to transfer org.apache.maven.plugins:maven-compiler-plugin:pom:2.5.1 from 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. Original error: Could not transfer artifact org.apache.maven.plugins:maven-compiler-plugin:pom:2.5.1 from/to central (http://repo.maven.apache.org/maven2): Failed to transfer http://repo.maven.apache.org/maven2/org/apache/maven/plugins/maven-compiler-plugin/2.5.1/maven-compiler-plugin-2.5.1.pom. Error code 501, HTTPS Required

 

Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven-compiler-plugin:2.5.1:compile (execution: default-compile, phase: compile)

 

But when i add the below build then the error is not displayed -

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>

 

Could you please suggest what to do now

 

Thank you

 

 


A
Ashish Thakur Replied on 24/01/2020

This was a maven side issue. Will get resolved soon. They might have recently migrated to HTTPS and this may be causing some of the links to not work.


A
Arun Gutta Replied on 26/01/2020

Thank you


A
Ashish Thakur Replied on 27/01/2020

Is the issue resolved?


A
Arun Gutta Replied on 05/02/2020

No,it is resolving on its own. i have to add the below build to get rid of the error.

<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-compiler-plugin</artifactId>
<version>3.1</version>
</plugin>
</plugins>
</pluginManagement>
</build>


A
Ashish Thakur Replied on 06/02/2020

This plugin is automatically added whenever you generate a new project.


Related Posts