Skip to content

Instantly share code, notes, and snippets.

@garystafford
Last active December 26, 2015 11:59
Show Gist options
  • Save garystafford/7147829 to your computer and use it in GitHub Desktop.
Save garystafford/7147829 to your computer and use it in GitHub Desktop.
Installing weblogic-maven-plugin on Windows, from blog post 'Build a Continuous Deployment System with Maven, Hudson, WebLogic Server, and JUnit'
cd %MW_HOME%/wlserver/server/lib
java -jar wljarbuilder.jar -profile weblogic-maven-plugin
mkdir c:\tmp
copy weblogic-maven-plugin.jar c:\tmp
cd c:\tmp
jar xvf c:\tmp\weblogic-maven-plugin.jar META-INF/maven/com.oracle.weblogic/weblogic-maven-plugin/pom.xml
mvn install:install-file -DpomFile=META-INF/maven/com.oracle.weblogic/weblogic-maven-plugin/pom.xml -Dfile=c:\tmp\weblogic-maven-plugin.jar
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment