ContributionsMost RecentMost LikesSolutionsRe: Groovy jar import on SOAP UI Groovy Script Hi TNeuschwanger Both compiling of groovy module and creating the jar file from IntelliJ IDEA produced successful results. In other words, I compiled the code and later generated the jar file from IntelliJ IDEA. The jar file of the groovy module worked successfully with SOAP UI. Thank you to IntelliJ IDEA for the same. Kindest regards, Raghavan Re: Groovy jar import on SOAP UI Groovy Script Hi Shashavali, Many thank you for the reply. The problem was with the jar file created. I created the jar file from command line: jar cvfm Automate.jar Automate.class The jar file had the Automate.class file and the manifest file. However, when I created the jar file from IntelliJ IDEA, copying and pasting the jar file on to SOAPUI\bin\ext folder solved the problem. Groovy jar import on SOAP UI Groovy Script Hi everyone, I created JAR file of my Groovy class. The JAR file has only one class TestEvidence.groovy inside Utilities folder. When I import the JAR file on the groovy script in SOAP UI, I'm receiving, Unable to resolve class Utilities.TestEvidence. In other words, in my SOAP UI groovy script, my couple of lines of code are: import Utilities.TestEvidence log.info "Going to call Test Evidence groovy code as I run the REST api from SOAPUI" Any pointers why I'm unable to resolve the class Utilities.TestEvidence please? Thanking you, Raghavan Kasthuri