Hi,

Due to a problem with my laptop, I couldn't release a new version of the plugin with the bug fix. Here is some workaround.
First : You can checkout git project (git://github.com/jenkinsci/weblogic-deployer-plugin.git), build it then load it manually on your jenkins
Second : The simplest one. Find into the plugin dir (plugins) the task.jelly file (WEB-INF/classes/org/jenkinsci/plugins/deploy/weblogic/data/DeploymentTask\task.jelly). Then replace the following part :

<f:entry title="${%wl.configuration}">
<f:entry title="${%wl.configuration.stage.mode}" field="stageMode">
<select class="setting-input" name="stageMode">
<j:forEach var="inst" items="${descriptor.weblogicStageModes}">
<f:option value="${inst.name()}" selected="${inst.name() == it.stageMode.name()}" >${inst.name()}</f:option>
</j:forEach>
</select>
</f:entry>
</f:entry>

By this one
<f:entry title="${%wl.configuration}">
<f:entry title="${%wl.configuration.stage.mode}" field="stageMode">
<f:textbox default="stage" value="stage"/>
</f:entry>
</f:entry>

I hope It will resolve your job creation issue until the next release

This message is automatically generated by JIRA.
If you think it was sent incorrectly, please contact your JIRA administrators.
For more information on JIRA, see: http://www.atlassian.com/software/jira

--
You received this message because you are subscribed to the Google Groups "Jenkins Issues" group.
To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.
 
 

Reply via email to