For a plugin I'm developing, I need to use classes from package org.eclipse.jgit (e.g. RevWalk).
Few findings:
When I include this bamboo git bundle/package to my pom.xml file,
<dependency>
<groupId>com.atlassian.bamboo.plugins</groupId>
<artifactId>atlassian-bamboo-plugin-git</artifactId>
<version>6.2.2</version>
<scope>provided</scope>
</dependency>
my code compiles just fine; it can find all the org.eclipse.jgit classes, (presumably because these are part of the git plugin?)
But then the problems start for me. I tried many different combinations of 'import-packages'. But it either errors during install that it can't find a bundle, or I'm getting a noClassDefFoundError.
Also added the org.eclipse.jgit as a separate dependency and compiled it with my plugin. Still errors during my install.
If anybody has successfully imported org.eclipse.jgit classes in their plugin (in combination with using the bamboo git plugin), I am very curious what the pom.xml settings are.
Hi Wouter
Can remove from your pom entry
<scope>provided</scope>
If scope is provided then it does not include that library in package.
Please try it.
Thanks
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.