Install new insight version to Maven project

Joyce Liu
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
July 28, 2020

I'm trying to update insight version to 8.6.3 while the old one is 8.3.4.

I installed the new insight to my local env but it seems that the installation behavior doesn't work as the old one.

when build a project using atlas-package.bat error message shows:

[ERROR] /xxxx.java:[34,59] cannot find symbol
[ERROR] symbol: class InsightException
[ERROR] location: package com.riadalabs.jira.plugins.insight.common.exception
[ERROR] /xxxx:[35,57] cannot find symbol
[ERROR] symbol: class ObjectAttributeBean

 

I checked the insight installation path and found that 8.6.3 pom file seems missed something.

<?xml version="1.0" encoding="UTF-8"?>
<project xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd" xmlns="http://maven.apache.org/POM/4.0.0"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
<modelVersion>4.0.0</modelVersion>
<groupId>com.riadalabs.jira.plugins</groupId>
<artifactId>insight</artifactId>
<version>8.6.3</version>
<description>POM was created from install:install-file</description>
</project>

 

But for 8.3.4  I could find more:

<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.riadalabs.jira.plugins</groupId>
<artifactId>insight</artifactId>
<version>8.3.4</version>
<organization>
<name>Mindville</name>
<url>http://www.mindville.com</url>
</organization>
<name>Insight</name>
<description>This is the Insight plugin for Atlassian Jira developed by Mindville.</description>
<packaging>atlassian-plugin</packaging>
<distributionManagement>
<snapshotRepository>
<id>riada-snapshots</id>
<url>https://repo.riada.io/repository/riada-snapshots/</url>
</snapshotRepository>
<repository>
<id>riada-releases</id>
<url>https://repo.riada.io/repository/riada-releases/</url>
</repository>
</distributionManagement>
<repositories>
<repository>
<id>riada-snapshots</id>
<url>https://repo.riada.io/repository/riada-repo/</url>
</repository>
</repositories>
<pluginRepositories>
<pluginRepository>
<id>riada-releases</id>
<url>https://repo.riada.io/repository/riada-repo/</url>
</pluginRepository>
</pluginRepositories>
<dependencies>
<dependency>
<groupId>javax.annotation</groupId>
<artifactId>javax.annotation-api</artifactId>
<version>1.3.2</version>
</dependency>
<dependency>
<groupId>com.google.code.findbugs</groupId>
<artifactId>jsr305</artifactId>
<version>3.0.2</version>
</dependency>
<dependency>
<groupId>com.sun.jersey</groupId>
<artifactId>jersey-client</artifactId>
<version>1.17.1</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.atlassian.activeobjects</groupId>
<artifactId>activeobjects-plugin</artifactId>
<version>${ao.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-api</artifactId>
<version>${jira.version}</version>
<scope>provided</scope>
</dependency>
<dependency>
<groupId>com.atlassian.jira</groupId>
<artifactId>jira-core</artifactId>
<version>${jira.version}</version>
<exclusions>
<exclusion>
<groupId>xml-apis</groupId>
<artifactId>xml-apis</artifactId>
</exclusion>
</exclusions>
<scope>provided</scope>
</dependency>

.........

 

How can I fix this problem?

0 answers

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events