I've build a small AppeEngine application which displays a green or red screen according to an URL call (/pass or /fail). That page is refreshed every minute.
The idea is to use a spare computer to display that build status page and set a continuous integration tool (TeamCity in my case) which will call the /pass or /fail URL at the end of each maven 2 build.
So, how am I able to make maven 2 call an URL at the end of a build (/pass or /fail)?
I'm thinking about a Maven 2 plugin but is it possible for a plugin to be called at the end of the build (and get the build status)?