i want to use weblogic-maven-plugin in my maven project in eclipse so i generated weblogic-maven-plugin.jar in weblogic server 12c 1.2.1 and i am using it.
com.oracle.weblogic weblogic-maven-plugin 12.1.2.0 t3://weblogicServerIP:7001 weblogic weblogic123 Cluster-1 true deploy true true install deploy
But i have a problem about weblogic maven plugin. if i built my maven project in my local to deploy, built is failed;
The args for the deployer is: -noexit -adminurl t3://weblogicServerIP:7001 -user weblogic -password ******** -deploy -name myProject -source myProject.war -targets Cluster-1 -upload -remote -verbose weblogic.Deployer invoked with options: -noexit -adminurl t3://weblogicServerIP:7001 -user weblogic -deploy -name myProject -source myProject.war -targets Cluster-1 -upload -remote -verbose[INFO] ------------------------------------------------------------------------[INFO] BUILD FAILURE[INFO] ------------------------------------------------------------------------[INFO] Total time: 1:04.013s[INFO] Finished at: Mon Jan 13 10:27:27 EET 2014[INFO] Final Memory: 9M/23M[INFO] ------------------------------------------------------------------------[ERROR] Failed to execute goal com.oracle.weblogic:weblogic-maven-plugin:12.1.2.0:deploy (default) on project myProject: weblogic.deploy.api.tools.deployer.DeployerException: Unable to connect to 't3://weblogicServerIP:7001': weblogic.security.utils.KeyStoreConfiguration. Ensure the url represents a running admin server and that the credentials are correct. If using http protocol, tunneling must be enabled on the admin server.
i enabled tunneling of server protocol but there is nothing to change in this error. By the way i run this cmd which is below in weblogicServer cmd line, i didn't get error message. Finally my deployment was succeed.
java weblogic.Deployer -noexit -adminurl t3://weblogicServerIP:7001 -user weblogic -password weblogic123 -deploy -name myProject -source myProject.war -targets Cluster-1 -upload -verbose -debug
By the way i extracted weblogic-maven-plugin.jar and i didn't find KeyStoreConfiguration.java. i didn't find anywhere.
So what should i do? is there a newtwork problem or weblogic-maven-plugin.jar is faulty?
Could you help me?
------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------
示例:
setDomainEnv.cmd
java weblogic.Deployer -noexit -adminurl t3://192.168.40.29:7001 -user weblogic -password weblogic_victop -deploy -name action-json -source F:/space_ee/action-json/target/action-json.war -targets AdminServer -upload -verbose -debug