[JIRA] (JENKINS-40610) Not about to execute groovy script from pipeline script
Title: Message Title Andrew Bayer resolved as Not A Defect That is correct behavior - you can only load Pipeline scripts, not arbitrary Groovy scripts/classes. Jenkins / JENKINS-40610 Not about to execute groovy script from pipeline script Change By: Andrew Bayer Status: Open Resolved Resolution: Not A Defect Add Comment This message was sent by Atlassian JIRA (v7.3.0#73011-sha1:3c73d0e) -- You received this message because you are subscribed to the Google Groups "Jenkins Issues" group. To unsubscribe from this group and stop receiving emails from it, send an email to jenkinsci-issues+unsubscr...@googleg
[JIRA] (JENKINS-40610) Not about to execute groovy script from pipeline script
Title: Message Title Eldo Joseph created an issue Jenkins / JENKINS-40610 Not about to execute groovy script from pipeline script Issue Type: Bug Assignee: Unassigned Components: pipeline Created: 2016/Dec/21 5:38 PM Priority: Blocker Reporter: Eldo Joseph I am trying to execute groovy script from jenkins pipleline script but throwing error. Could someone help me? Pipeline script node ('windows') { gscript = load './GlobalConfig/Framework/Main.groovy' } Main.groovy class Main{ static void main(String[] args) { println "Im here" } } Error Logs java.io.NotSerializableException: org.codehaus.groovy.runtime.InvokerHelper$1 at org.jboss.marshalling.river.RiverMarshaller.doWriteObject(RiverMarshaller.java:860) at org.jboss.marshalling.river.RiverMarshaller.doWriteFields(RiverMarshaller.java:1032) at org.jboss.marshalling.river.RiverMarshaller.doWriteSerializableObject(RiverMarshaller.java:988) at org.jboss.marshalling.river.RiverMarshaller.doWriteObject(RiverMarshaller.java:854) at org.jboss.marshalling.river.BlockMarshaller.doWriteObject(BlockMarshaller.java:65) at org.jboss.marshalling.river.BlockMarshaller.writeObject(BlockMarshaller.java:56) at org.jboss.marshalling.MarshallerObjectOutputStream.writeObjectOverride(MarshallerObjectOutputStream.java:50) at org.jboss.marshalling.river.RiverObjectOutputStream.writeObjectOverride(RiverObjectOutputStream.java:179) at java.io.ObjectOutputStream.writeObject(ObjectOutputStream.java:344) at java.util.HashMap.internalWriteEntries(HashMap.java:1785) at java.util.HashMap.writeObject(HashMap.java:1362) at sun.reflect.GeneratedMethodAccessor469.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43) at java.lang.reflect.Method.invoke(Method.java:498) at org.jboss.marshalling.reflect.SerializableClass.callWriteObject(SerializableClass.java:271) at org.jboss.marshalling.river.RiverMarshaller.doWriteSerializableObject(RiverMarshaller.java:976) at org.jboss.marshalling.river.RiverMarsh