Hi,
I’m developing a plugin that has a dependency on Insight and I’m trying to get it running local with Jira Atlassian plugin SDK.
I’ve added the riadalabs dependencies with Maven:
<dependency>
<groupId>com.riadalabs.jira.plugins</groupId>
<artifactId>insight</artifactId>
<version>9.0.7</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.riadalabs</groupId>
<artifactId>insight-core-model</artifactId>
<version>0.2.2</version>
<scope>provided</scope>
</dependency>
And integrated Jira Service Management (which has it bundled) with AMPS:
<plugin>
<groupId>com.atlassian.maven.plugins</groupId>
<artifactId>jira-maven-plugin</artifactId>
<version>8.1.0</version>
<extensions>true</extensions>
<configuration>
<log4jProperties>src/main/resources/META-INF/log4j.properties</log4jProperties>
<applications>
<application>
<applicationKey>jira-software</applicationKey>
<version>8.16.1</version>
</application>
<application>
<applicationKey>jira-servicedesk</applicationKey>
<version>4.17.0</version>
</application>
</applications>
If I go to Settings -->Mange Apps, it’s showing it as activated and only a few UI elements are missing.
I don’t get any Errors in my log regarding Insight. But if I click “Get started” or “Configure” I’ll lead me back to Jira main page. Also, there’s no “Insight” on top navigation bar. Is it because it’s shown as unlicensed?
I’m a bit lost, can anyone help?
Thank you in advance
Caroline