簡體   English   中英

Jenkins插件詳細信息

[英]Jenkins plugin details

在“ Jenkins關於”頁面(“ Manage Jenkins > About Jenkins )中,我可以看到已安裝的插件列表(在“ License and dependency information for plugins部分下)。 但是我注意到很少有插件名稱被刪除。

是否因為任何版本沖突? 它沒有顯示有關解決此問題需要做什么的任何細節。 有指針嗎?

License and dependency information for pluginsLicense and dependency information for plugins部分是通過$ JENKINS_URL / pluginManager安裝的插件中​​填充的。

606794a on 15 May 2016詹金斯的來源直接獲取,截至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>

如果該插件處於非活動狀態,則會刪除該插件。 不活動只是意味着它已被禁用,但未被刪除。

可以通過UI手動禁用插件,如果存在兼容性等問題,則可以在更新后自動禁用插件。

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM