How I create a plugin for Bamboo version 7.1.3 instead of default 6.8.0?
When I run `atlas-create-bamboo-plugin` it says `using stable product version: 6.8.0`. My company's Bamboo is 7.1.3 and I want to develop my plugin for that version.
I changed pom.xml and plugin.iml file but with no result. When I run `atlas-run` I see Bamboo 6.8.0 on localhost.
Please help
So did you changed to the <bamboo.version>7.1.0</bamboo.version> in pom.xml?
Then you can run with next parameters
atlas-run --product bamboo --version 7.1.3
Yes, my pom looks like this
<properties>
<bamboo.version>7.1.3</bamboo.version>
<bamboo.data.version>7.1.3</bamboo.data.version>
<amps.version>8.0.2</amps.version>
<plugin.testrunner.version>2.0.1</plugin.testrunner.version>
<atlassian.spring.scanner.version>1.2.13</atlassian.spring.scanner.version>
<!-- This property ensures consistency between the key in atlassian-plugin.xml and the OSGi bundle's key. -->
<atlassian.plugin.key>${project.groupId}.${project.artifactId}</atlassian.plugin.key>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<maven.compiler.source>1.8</maven.compiler.source>
<maven.compiler.target>1.8</maven.compiler.target>
</properties>
I used also
atlas-run --product bamboo --version 7.1.3
but still, my Bamboo runs in 6.8.0, look at the screenshot
Is this a bug?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Excellent
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.