将项目添加到 Jenkins 侧面板

发布于 2024-11-16 07:11:13 字数 449 浏览 1 评论 0原文

我正在开发一个 Jenkins 插件,我试图在管理 Jenkins-> 管理节点下的侧面板中添加带有图标的链接。我的链接将放置在“新节点”下方。

我已经实现了一个简单的操作,但是我应该如何处理它才能使其出现在侧面板中?

public class BuildCountAction implements Action {

    public BuildCountAction() {}

    public String getIconFileName() {
        return "clipboard.gif";
    }

    public String getDisplayName() {
        return "Test";
    }

    public String getUrlName() {
        return "testurl";
    }
}

I'm developing a Jenkins plugin where I'm trying to add a link with an icon to the sidepanel under Manage Jenkins->Manage Nodes. My link would be placed just below "New Node".

I've implemented a simple Action, but what should I do with it to make it appear in the sidepanel?

public class BuildCountAction implements Action {

    public BuildCountAction() {}

    public String getIconFileName() {
        return "clipboard.gif";
    }

    public String getDisplayName() {
        return "Test";
    }

    public String getUrlName() {
        return "testurl";
    }
}

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

紫轩蝶泪 2024-11-23 07:11:13

您可能想看看 Hudson/Jenkins 已有的类似插件。

You may want to take a look at similar plugins that already exist for Hudson/Jenkins..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文