I got this huge error message when I setup my Maven Java Project and looked at the pom.xml, I got the below huge error trace,
Multiple annotations found at this line:
CoreException: Could not get the value for parameter compilerId for plugin execution default-compile:
PluginResolutionException: Plugin org.apache.maven.plugins:maven-compiler-plugin:3.1 or one of its
dependencies could not be resolved:
Failed to collect dependencies at
org.apache.maven.plugins:maven-compiler-plugin:jar:3.1 ->
org.apache.maven:maven-toolchain:jar:1.0 ->
org.apache.maven:maven-core:jar:2.0.6 ->
org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4: ArtifactDescriptorException:
Failed to read artifact descriptor for
org.codehaus.plexus:plexus-interactivity-api:jar:1.0-alpha-4:
ArtifactResolutionException:
Failure to transfer org.codehaus.plexus:plexus-interactivity-api:pom:1.0-alpha-4
from https://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.codehaus.plexus:plexus-interactivity-api:pom:1.0-alpha-4 from/to central
(https://repo.maven.apache.org/maven2): The operation was cancelled.
Plugin execution not covered by lifecycle configuration:
org.apache.maven.plugins:maven-compiler-plugin:3.1:testCompile (execution: default-testCompile, phase: test-compile)
CoreException: Could not get the value for parameter compilerId for
plugin execution default-testCompile:
PluginResolutionException: Plugin org.apache.maven.plugins:maven-compiler-plugin:3.1
or one of its dependencies could not be resolved: The following artifacts could not
be resolved: org.apache.maven:maven-plugin-api:jar:2.0.9, org.apache.maven:maven-artifact:jar:2.0.9, org.codehaus.plexus:plexus-utils:jar:1.5.1, org.apache.maven:maven-core:jar:2.0.9,
org.apache.maven:maven-settings:jar:2.0.9, org.apache.maven:maven-plugin-parameter-documenter:jar:2.0.9,
org.apache.maven:maven-profile:jar:2.0.9, org.apache.maven:maven-model:jar:2.0.9,
org.apache.maven:maven-repository-metadata:jar:2.0.9, org.apache.maven:maven-error-diagnostics:jar:2.0.9,
org.apache.maven:maven-project:jar:2.0.9, org.apache.maven:maven-plugin-registry:jar:2.0.9, org.apache.maven:maven-
plugin-descriptor:jar:2.0.9, org.apache.maven:maven-artifact-manager:jar:2.0.9,
org.apache.maven:maven-monitor:jar:2.0.9, org.apache.maven:maven-toolchain:jar:1.0, org.apache.maven.shared:maven-shared-
utils:jar:0.1, org.apache.maven.shared:maven-shared-incremental:jar:1.1,
org.codehaus.plexus:plexus-compiler-api:jar:2.2, org.codehaus.plexus:plexus-compiler-manager:jar:2.2,
org.codehaus.plexus:plexus-compiler-javac:jar:2.2, org.codehaus.plexus:plexus-container-default:jar:1.5.5:
Failure to transfer org.apache.maven:maven-plugin-api:jar:2.0.9 from https://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:maven-plugin-api:jar:2.0.9
from/to central (https://repo.maven.apache.org/maven2): The operation was cancelled.
Plugin execution not covered by lifecycle configuration: org.apache.maven.plugins:maven-compiler-plugin:3.1:compile
(execution: default-compile, phase: compile)
- Go to Run -> Run Configuration,
- Double click on Maven Build,
- Under new configuration type clean build under Goal,
- Run the new configuration.
- All missing repo's will get downloaded from the central (nexus) repository and the error should go away!
You can also try Right-click your pom.xml -> Run as -> MAVEN BUILD
If that does not work then - Right click on pom.xml -> Maven -> Update Project... -> Check Force update of Snapshot\Releases.
More Posts related to Java,
- Java equals method - Tutorial
- Unbound classpath container: JRE System Library [JavaSE-1.7]
- Spring Boot: @RequestBody not applicable to method
- Java 8: Steam map with Code Examples
- Java Program: Random Number Generator
- Java java.time.Clock class code examples [Java Date Time API]
- Fix: type argument is not within bounds of type-variable T
- [Fix] java.net.MalformedURLException: unknown protocol
- Java 7 addSuppression() and getSuppression() Exception Handling
- Convert Java Array to ArrayList Code Example
- How to Word-Warp Console logs in IntelliJ
- Ways Compare Dates in Java Programming with Examples
- Remove Trailing zeros BigDecimal Java
- CRUD operations in Spring Boot + JDBC
- [Java Threads] Should we extend Thread Class or implement Runnable interface
- Json Serialization and Deserialization using Java Jackson
- Create simple struts2 project using maven commands
- How to install Java OpenJDK 11 on Alpine Linux
- Unsupported major.minor version 52.0 in java
- Error: Can not find the tag library descriptor for
- Java: Convert String to Binary
- How to run Java Unit Test cases with Apache Maven?
- Java: Testing Private Methods in JUnit using reflection API Example
- Java JDBC Connection with MySQL Driver in VS Code + Troubleshooting
- Java Join Strings with Comma Separator
More Posts:
- How to save All Files at once in Notepad++ - NotepadPlusPlus
- Hide Scrollbar from Android Views - Android
- Microsoft Sign-in Error Code: 50058 (Request Id, Correlation Id and Timestamp) - Microsoft
- Android : Connection with adb was interrupted 0 attempts have been made to reconnect - Android
- How to Compare Strings in Bash Script - Bash
- Fix: Spring Boot REST HTTP Status 415 - Unsupported Media Type Error - Java
- Access Windows share folder in Ubuntu Device in Network - Ubuntu
- Change Android Toast background color - Android