Hi,

Even if you are importing the namespace, use the full name for the class
and try. For example,

com.company.deployment.common.MyClass obj = new
com.company.deployment.common.MyClass()

Regards,
Venkatesh


On Fri, Sep 18, 2020 at 12:56 AM zil...@gmail.com <zill...@gmail.com> wrote:

> I use this extensibly in my pipelines
> https://www.jenkins.io/doc/book/pipeline/shared-libraries/
>
> For example, I can have the following files
> /path/src/com/company/deployment/script1.groovy
> /path/src/com/company/deployment/script2.groovy
>
> Now I want both scripts to refer to a common object in
> /path/src/com/company/deployment/common.groovy
>
> For example
>
> common.groovy
> package com.company.deployment.common
> class MyClass {
> }
>
> script1.groovy
> package com.company.deployment
> import com.company.deployment.common
> MyClass mc = new MyClass()
>
> scrpt2.groovy
> package com.company.deployment
> import com.company.deployment.common
> MyClass mc = new MyClass()
>
> But I get the following with I try to run either script1 or script2
> unable to resolve class MyClass
>
> What else do I need to do?
> On Thursday, September 17, 2020 at 3:22:46 PM UTC-4 zil...@gmail.com
> wrote:
>
>> I use this extensibly in my pipelines
>> https://www.jenkins.io/doc/book/pipeline/shared-libraries/
>>
>> For example, I can have the following files
>> /path/src/com/company/deployment/script1.groovy
>> /path/src/com/company/deployment/script2.groovy
>>
>> Now I want both scripts to refer to a common object in
>> /path/src/com/company/deployment/common.groovy
>>
>> For example
>>
>> common.groovy
>> package com.company.deployment.common
>> class MyClass {
>> }
>>
>> script1.groovy
>> package com.company.deployment
>> import com.company.deployment.common
>> MyClass mc = new MyClass()
>>
>> scrpt2.groovy
>> package com.company.deployment
>> import com.company.deployment.common
>> MyClass mc = new MyClass()
>>
>>
>> --
> You received this message because you are subscribed to the Google Groups
> "Jenkins Users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to jenkinsci-users+unsubscr...@googlegroups.com.
> To view this discussion on the web visit
> https://groups.google.com/d/msgid/jenkinsci-users/172ca56b-24a7-4e3a-bf37-1aa153793ddan%40googlegroups.com
> <https://groups.google.com/d/msgid/jenkinsci-users/172ca56b-24a7-4e3a-bf37-1aa153793ddan%40googlegroups.com?utm_medium=email&utm_source=footer>
> .
>

-- 
You received this message because you are subscribed to the Google Groups 
"Jenkins Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to jenkinsci-users+unsubscr...@googlegroups.com.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jenkinsci-users/CAPp28epi%2B8G0nn5zJfveu0-ayd6U8X87_5MekTWveYSux%3DE91g%40mail.gmail.com.

Reply via email to