You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have the following error trying to run a spring-boot application:
[ERROR]: Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2:java (default-cli)
It runs fine on my local terminal with $mvn spring-boot:run.
After some searching I identified the issue in my pom.xml:
The application fails to run because the parent pom has set the provided flag.
Only after removing the provided tag , the debuger works.
Is it posible to provide the missing dependencies from the launch configuration ? I do not want to have to change my pom every-time im going to run a service locally. I rather a launch configuration file aready set .
I have the following error trying to run a spring-boot application:
[ERROR]: Failed to execute goal org.codehaus.mojo:exec-maven-plugin:1.2:java (default-cli)
It runs fine on my local terminal with
$mvn spring-boot:run
.After some searching I identified the issue in my pom.xml:
The application fails to run because the parent pom has set the provided flag.
Only after removing the provided tag , the debuger works.
Is it posible to provide the missing dependencies from the launch configuration ? I do not want to have to change my pom every-time im going to run a service locally. I rather a launch configuration file aready set .
this is my launch configuration:
The text was updated successfully, but these errors were encountered: