[](https://github.com/codelibs/fess-ds-atlassian/actions/workflows/maven.yml)

January 15, 2026 ยท View on GitHub

JIRA/Confluence Data Store for Fess Java CI with Maven

Overview

JIRA/Confluence Data Store is an extension for Fess Data Store Crawling.

Download

See Maven Repository.

Installation

See Plugin of Administration guide.

Getting Started

Parameters

home=...
is_cloud=true
auth_type=...
oauth2.client_id=...
oauth2.client_secret=...
oauth2.access_token=...
oauth2.refresh_token=...
KeyValue
homeURL of the Atlassian application(JIRA/Confluence)
is_cloudWhether the Atlassian instance is cloud-based (true or false)
auth_typeoauth(OAuth 1.0a authentication), oauth2(OAuth 2.0 authentication), or basic(Basic authentication)
oauth.consumer_keyConsumer key for OAuth 1.0a (Usually OauthKey)
oauth.private_keyPrivate key for OAuth 1.0a
oauth.secretVerification code for OAuth 1.0a
oauth.access_tokenAccess token for OAuth 1.0a
oauth2.client_idClient ID for OAuth 2.0
oauth2.client_secretClient secret for OAuth 2.0
oauth2.access_tokenAccess token for OAuth 2.0
oauth2.refresh_tokenRefresh token for OAuth 2.0 (Optional)
oauth2.token_urlToken URL for OAuth 2.0 (Optional, has default)
basic.usernameUsername of Atlassian account for Basic authentication
basic.passwordPassword of Atlassian account for Basic authentication
issue.jqlJQL for advanced search (JIRA only) (Optional)

oauth, oauth2, or basic parameters are required.

Scripts

JiraDataStore

url=issue.view_url
title=issue.summary
content=issue.description + issue.comments
last_modified=issue.last_modified
KeyValue
issue.view_urlURL of the issue.
issue.summarySummary of the issue.
issue.descriptionDescription of the issue.
issue.commentsComments of the issue.
issue.last_modifiedLast modified date of the issue.

ConfluenceDataStore

url=content.view_url
title=content.title
content=content.body + content.comments
last_modified=content.last_modified
KeyValue
content.view_urlURL of the content page.
content.titleTitle of the content page.
content.bodyBody of the content page.
content.commentsComments of the content page.
content.last_modifiedLast modified date of the content.