Re: users not found

2016-10-29 Thread Martina Riedel
I don't see a screen shot, but I think I ran into the same thing I think and it was a case issue. My username was martina and the full name was Martina and it was put as Martina in the config.xml. When I give my first and last as full name it doesn't do it. Check your conf

Re: Constructor or equivalent for "Global Variables" in libraries

2016-10-26 Thread Martina
In a big standalone groovy I have class myClass { List myList = [] public myCall (item) { myList.add(item) } } I am pretty sure I have used it without the class stuff in smaller snippets. Martina On Wednesday, October 26, 2016 at 8:54:59 AM UTC-6, Michael Lasevich

Re: Constructor or equivalent for "Global Variables" in libraries

2016-10-26 Thread Martina
Try the following: myList = [] def call(item){ myList << item } Martina On Wednesday, October 26, 2016 at 12:24:48 AM UTC-6, Michael Lasevich wrote: > > So, what is the proper way to initialize the fields in the "Global > Variables" found in the /vars dir in libra

Re: pipeline - groovy - file paths on windows?

2016-10-17 Thread Martina
ding files, not directories, but examples are clearly using c:/path/path syntax. I'm thinking you may want to try changing up your wildcard to something like '**/*.xml' or '**/*.txt', whatever you actually have on that file system. hth Martina On Monday, October 17, 2016 at 1

Re: pipeline - groovy - file paths on windows?

2016-10-17 Thread Martina
What exactly is the value of ${source_folder_name} that is in the message? C:/some-dir/some-other-name should definitely work. Martina > > > -- You received this message because you are subscribed to the Google Groups "Jenkins Users" group. To unsubscribe from this group