Search code examples
javamavenintellij-ideajettytapestry

Used Tapestry template, reverted, but now not referencing actual index.tml file


I royally messed up trying to push my changes to my github repository and did something weird in IntelliJ. It basically automatically reverted me to the original Tapestry framework with their boilerplate Index.tml page.

After some reverting to older versions, I finally got all the files back to their original state. So, now, if I access my app in the command line then run

mvn jetty:run

however I keep getting the error below, which does not represent the file its actually accessing (totally different).

How do I get mvn to access the right file, or IntelliJ/Tapestry to get this issue to go away.

:(

Thanks!

William


Solution

  • The solution has been found by a nice colleague of mine. To resolve the issue:

    mvn clean compile jetty:run
    

    This solved all issues.