atlassian-plugin-sdk

Apache POI usage with Apache Felix

蓝咒 提交于 2019-12-07 18:21:31
问题 I'm trying to import Apache POI to Atlassian Jira Plugin for reading excel files. At the beginning, I started with adding just <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>${poi.version}</version> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml-schemas</artifactId> <version>${poi.version}</version> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>${poi.version}<

Apache POI usage with Apache Felix

谁都会走 提交于 2019-12-06 11:35:45
I'm trying to import Apache POI to Atlassian Jira Plugin for reading excel files. At the beginning, I started with adding just <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi</artifactId> <version>${poi.version}</version> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml-schemas</artifactId> <version>${poi.version}</version> </dependency> <dependency> <groupId>org.apache.poi</groupId> <artifactId>poi-ooxml</artifactId> <version>${poi.version}</version> </dependency> poi.version is 3.14 then when I started the plugin it gave Unresolved constraint

How do I save a value into a custom field in JIRA programmatically?

[亡魂溺海] 提交于 2019-11-29 07:16:26
问题 I've spent days trying to find out how to save or update a value into a CustomField programmatically and finally found out how it's done. So I'll make this a question and then answer it as I would have loved to have this question and answer. There is conflicting documentation on how to save or update a value for a Custom Field in JIRA. I was using: customField.setCustomFieldValue(CustomField, value); This does not save the value into the database but it does update the value as far as I can