Can't upload plugin because of unsatisfied requirements

thang_dang April 20, 2017

Hi,

I have trouble with uploading plugins in Jira, I updated UPM to the newest version, I saw this: https://community.atlassian.com/t5/Confluence-ques tions/Impossible-to-install-plugins-Failed-to-reso ... did as following: https://ecosystem.atlassian.net/browse/UPM-5035, but it didn't work. When I upload my plugin:

2017-04-21 01:29:43,750 http-bio-2990-exec-4 WARN thangdt3 89x3x1 1yvt04t 0:0:0:0:0:0:0:1 /plugins/servlet/upm/marketplace [spring.scanner.extension.DevModeBeanInitialisationLoggerBeanPostProcessor] AfterInitialisation [beanName=com.atlassian.jira.projects.tabpanel.TabPanelWebPanelRenderer, objectType=com.atlassian.jira.projects.tabpanel.TabPanelWebPanelRenderer, level=-58]
2017-04-21 01:30:19,807 http-bio-2990-exec-13 WARN thangdt3 90x877x2 1yvt04t 0:0:0:0:0:0:0:1 /rest/plugins/1.0/installed-marketplace [atlassian.upm.pac.PacClientImpl] Update check request may take longer because of the number of add-ons
2017-04-21 01:31:01,778 UpmAsynchronousTaskManager:thread-3 ERROR thangdt3 90x900x1 1yvt04t 0:0:0:0:0:0:0:1 /rest/plugins/1.0/ [upm.core.install.ObrPluginInstallHandler] OBR resolver has 4 unsatisfied requirements for installing plugin_7109468542611711012_myPlugin-1.0.0-SNAPSHOT.obr
2017-04-21 01:31:01,778 UpmAsynchronousTaskManager:thread-3 ERROR thangdt3 90x900x1 1yvt04t 0:0:0:0:0:0:0:1 /rest/plugins/1.0/ [upm.core.install.ObrPluginInstallHandler] Unsatisfied requirement: (&(package=com.sun.media.imageio.plugins.tiff))
2017-04-21 01:31:01,778 UpmAsynchronousTaskManager:thread-3 ERROR thangdt3 90x900x1 1yvt04t 0:0:0:0:0:0:0:1 /rest/plugins/1.0/ [upm.core.install.ObrPluginInstallHandler] Unsatisfied requirement: (&(package=org.apache.poi.xssf.usermodel))
2017-04-21 01:31:01,778 UpmAsynchronousTaskManager:thread-3 ERROR thangdt3 90x900x1 1yvt04t 0:0:0:0:0:0:0:1 /rest/plugins/1.0/ [upm.core.install.ObrPluginInstallHandler] Unsatisfied requirement: (&(package=org.apache.poi.ss.usermodel))
2017-04-21 01:31:01,779 UpmAsynchronousTaskManager:thread-3 ERROR thangdt3 90x900x1 1yvt04t 0:0:0:0:0:0:0:1 /rest/plugins/1.0/ [upm.core.install.ObrPluginInstallHandler] Unsatisfied requirement: (&(package=org.apache.tools.zip))
2017-04-21 01:31:02,332 UpmAsynchronousTaskManager:thread-3 WARN thangdt3 90x900x1 1yvt04t 0:0:0:0:0:0:0:1 /rest/plugins/1.0/ [upm.core.install.DefaultPluginInstallationService] Plugin installation failed: Failed to resolve plugin dependencies within OBR [plugin_7109468542611711012_myPlugin-1.0.0-SNAPSHOT.obr]. Please see the logs for more detailed information.

Some days ago I could upload plugins normally.What should I do?

1 answer

0 votes
Vishnukumar Vasudevan
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
April 21, 2017

Are you sure the plugin is compatible to  your jira version ? If so, you can try manually installing the plugin by copying the jar to plugins folder. 

Ref:- https://confluence.atlassian.com/jira/__installing-a-jira-plugin-manually-245825541.html 

But, this needs a JIRA restart.

thang_dang April 22, 2017

Sorry for replying you late. I found my problem, but I'm finding way to solve it. When I add this dependency to my pom, my plugin can't be uploaded:

        <dependency>
            <groupId>net.crash</groupId>
            <artifactId>cells</artifactId>
            <version>1.0</version>
            <exclusions>
                <exclusion>
                    <groupId>com.aspose</groupId>
                    <artifactId>aspose-cells</artifactId>
                </exclusion>
            </exclusions>
        </dependency>

But my colleagues can add it to their pom and it work perfectly. I use Intellij IDEA, and when I open the Maven Projects tab, my "net.crash:cells:1.0" appears a red underline. I tried synchronize, validate cache/ restart Intellij IDEA but it didn't work.

Suggest an answer

Log in or Sign up to answer