Hi,
I want to add http-builder jar so I could use it in script runner,
Where should I put it so i could just import it .
I tried this.class.classLoader.rootLoader.addURL( new URL("file:///http-builder-0.7.2.jar") ) but it did not work ( at least not from the script console. )
Hi,
I have the same problem... (Version: 3.0.12)
Actually I have the following error message:
java.lang.NullPointerException: Cannot invoke method addURL() on null object
when I would like to add the JAR file URL:
File myFile=new File("/Users/bdo/Workspace/Application/jira/jira_home/scripts/jconn2.jar"); URL myUrl = myFile.toURI().toURL(); this.class.classLoader.rootLoader.addURL(myUrl)
Gives a solution or workaround for this case? For me it's not a good to copy my JAR file into the scriptrunner plugin lib folder, cause I can't update the Script Runner Add-On.
Many thanks and regards,
Benjamin
You should use @Grab... there is much more to it than what you are doing. The classpath needs to be modified at the compile phase, the way you're doing it it's too late. http://docs.groovy-lang.org/latest/html/documentation/grape.html
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is included in 3.0.x... presumably you are using an earlier version?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
well, it's there then...
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.