I am facing an issue in web/pom.xml. am i allowed to change it.

if i go to file>build>build project. i get this error

how can i solve this

Kindly, is the error as a result of any recent changes you made?

You can’t change the pom.xml if it isn’t necessary. Can you share the error logs with us

He can if he is adding a new library or upgrading an existing one though now days it done automatically, Changing Project Version or Metadata, Plugin Configuration, Modifying Build or Test Settings it a matter of understanding what he is trying to do if possible and guide him accordingly I believe he is a newbie.

@snow Do you mind sharing what you are trying to achieve and if possible share the ticket you are working on please?

1 Like

this is the issue: jira. but its not the issue problem. when i reset the changes to start on new one. i do “rebuild project” usually. but this time round. it gave me the that error when i did it. i did it after reseting the repo. thank you all

this is the issue: jira. but its not the issue problem. when i reset the changes to start on new one. i do “rebuild project” usually. but this time round. it gave me the that error when i did it. i did it after reseting the repo. thank you all

There error you’re getting is most likely as a result of your machine not correctly downloading a dependency (jackson-core) and so winding up with a corrupted dependency. Probably the easiest way to address it is to delete the relevant directory from your local Maven cache (~/.m2/repository/com/fasterxml/jackson/core) and try to force Maven to re-resolve dependencies, which can be done by syncing the project in IntelliJ’s Maven Tools window or just running mvn clean install again.

1 Like