Hi there,
I'm currently developing a jira plugin and using the following dependency:
<dependency>
<groupId>nz.ac.waikato.cms.weka</groupId>
<artifactId>weka-stable</artifactId>
<version>3.8.0</version>
</dependency>
It's loaded correctly and I can use the packages. Unfortunately, my quickreload is getting really slow (between 1-3 minutes). Its stuck at the below lines for most of the time:
[INFO] Generating a manifest for this plugin
[INFO] using maven-bundle-plugin v2.5.3
when I add <scope> provided </scope> to the dependency, quick reload works well, but I get a ClassDefNotFound Error while executing.
Can anyone help on this?
Hello,
When you do not provide a scope, it means that this package will be packed to your jar. When you provide the provided scope, it does not happen, but this package must be already in Jira.
I guess packing the weka-stable jar into your jar takes time.
Hi Alexey, thank for your reply!
you're right! I just checked the .jar file and a weka filder is included (with no scope or explicit compile scope) and not if scope is provided.
Any suggestions if there is a way to speed that up?
Always waiting this time really kills my workflow
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You can not speed it up. It depends on your notebook/pc power.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I am not aware of such an option.
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.