My organization wants to put "configuration" of the container (such as JMS resources and datasources) into source control. I'd like haven Maven be able to execute this as a goal. This isn't far from the underlying ideas behind liquibase, where you can update your schema with mvn liquibase:update
.
I'd like something that could be like:
mvn container:config -Pdev
and it would go out to the dev server and perhaps add a datasource to the server.xml. Bonus points if the solution is portable across GlassFish.
Anyone know of a tool like this?