Getting started with Weblogic Maven Plugin
What is Weblogic Maven Plugin ? Weblogic Maven Plugin is a plugin (just a single jar) that comes bundled with Weblogic Application Server which helps to manage the Weblogic server through Maven commands. When I say manage, I mean following actions on Weblogic server - Create/Modify/Delete weblogic domain Start server/Stop server/Restart server Deploy/Undeploy applications Yes. You read it correctly. Just similar like "tomcat7-maven-plugin" which is to run tomcat within maven, we now have "weblogic-maven-plugin". This means, you can run weblogic server in background during maven builds. So, let's gets started with using weblogic-maven-plugin. Installing the weblogic-maven-plugin For this tutorial, my machine setup is as follows: Weblogic Server Version :12.2.1 (can be downloaded from here ) Weblogic Server Installation directory : D:\Oracle_home\ OS ...