Jenkins plugin details -


in jenkins page (manage jenkins > jenkins) can see list of plugins installed (under license , dependency information plugins section). noticed few plugin names striked through.

is because of version conflict? not show detail needs done fix this. pointers please?

the license , dependency information plugins section populated plugins installed via $jenkins_url/pluginmanager.

taken directly jenkins's source, of 606794a on 15 may 2016:

<h2>${%plugin.dependencies}</h2>       <ul>         <j:foreach var="p" items="${app.pluginmanager.plugins}"> <!-- todo sort -->         <li>           <a href="${rooturl}/pluginmanager/plugin/${p.shortname}/thirdpartylicenses">       <j:choose>         <j:when test="${p.active}">           ${p.displayname}         </j:when>         <j:otherwise>           <strike>${p.displayname}</strike>         </j:otherwise>       </j:choose>     </a>   </li>   </j:foreach> </ul> 

the plugin striked through if inactive. inactive means it's disabled, not deleted.

plugins can manually disabled via ui or automatically after update if there issue such compatibility.


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -