Skip to content

Commit c7394f4

Browse files
committed
feat(jira): allow setting Jira version using env variable
The desired Jira version can be set using the JIRA_VERSION environment variable. BREAKING BREAKING BREAKING: now the Jira version also goes up to 8.9.0
1 parent 929078c commit c7394f4

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

Diff for: Dockerfile

+2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
FROM addono/atlassian-sdk
22

3+
env JIRA_VERSION="8.9.0"
4+
35
COPY ./plugin .
46

57
ENTRYPOINT ["atlas-run"]

Diff for: plugin/pom.xml

+1-1
Original file line numberDiff line numberDiff line change
@@ -178,7 +178,7 @@
178178
</build>
179179

180180
<properties>
181-
<jira.version>7.13.0</jira.version>
181+
<jira.version>${env.JIRA_VERSION}</jira.version>
182182
<amps.version>8.0.2</amps.version>
183183
<plugin.testrunner.version>2.0.1</plugin.testrunner.version>
184184
<atlassian.spring.scanner.version>1.2.13</atlassian.spring.scanner.version>

0 commit comments

Comments
 (0)