Collibra Spring Boot Integrations - Purview and Collibra Integration
Summary: user_37d2e7 is seeking assistance with a technical issue related to the "Collibra Spring Boot Integrations" video. They encounter a problem when attempting to run the command `mvn spring-boot:run -Djasypt.encryptor.password=mYdecryptionk3y`, receiving an error that the spring-boot plugin cannot be found in the current project or plugin groups available from the repositories. They have provided details of the error and are looking for solutions to resolve this issue.
Hi,
In the video given as a part of "Collibra Spring Boot Integrations", when I run mvn spring-boot:run -Djasypt.encryptor.password=mYdecryptionk3y on the command prompt it says that it cannot find spring-boot plugin "No plugin found for prefix 'spring-boot' in the current project and in the plugin groups [org.apache.maven.plugins, org.codehaus.mojo] available from the repositories [local (C:\Users........."
Thanks,
Eleftheria Makrydaki
·1 year agoHello,
The error message "No plugin found for prefix 'spring-boot'..." clearly points to Maven's inability to locate the necessary plugin to execute the
spring-boot:rungoal. This typically happens when the plugin dependency hasn't been added to the<plugins>section of the project'spom.xmlfile. I'd suggest to make sure that the Spring Boot Maven Plugin is Included, is correctly installed and configured on your system. Sometimes updating the local Maven repository can also help.Hoping that this might help!
Thanks you very much!