我已经在IntelliJ IDE中开发了Groovy类,我想在Jenkins的Pipeline插件的“ Pipeline脚本”中实例化这些类之一。我尝试遵循“ Eval.me”和class.forName的示例

Sample

package com.mycomp.tmo

/**
 * Created by
 */
public void callMe(){
    println("Hello World !")
}


def e = "callMe"
def cl = Class.forName("com.mycomp.tmo.Sample")
println(Eval.me("${c1} (${e})"))


也在下面尝试过:

String cls = 'D:\\Users\\b\\IdeaProjects\\Automation\\src\\com\\mycomp\\tmo\\DBConnectionManager'

def map = ['person': ${cls}]
map['person'].newInstance()

最佳答案

我认为我两周前问的帖子可以回答您的问题。
Create resusable jenkins pipeline script

07-26 01:06