I have a custom field plugin that needs to be migrated to the current Jira version. The plugin is based on class CalculatedCFType and implements interface GroupSelectorField. This interface requires a single method
org.apache.lucene.search.Query
getQueryForGroup(String fieldID, String groupName)
to be implemented but I struggle to add the Lucene dependency to my plugin project. Is there some groupId/artefactId that needs to be added to pom.xml?
Adding the following dependency block to pom.xml seems to work:
<dependency>
<groupId>org.apache.lucene</groupId>
<artifactId>lucene-core</artifactId>
<version>3.3.0</version>
<scope>provided</scope>
</dependency>
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.