You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
Hi,
Is it possible to get the proper source code of bamboo-docker-plugin-6.x.jar?
Actually I took the source code from below location, but when I configure it in eclipse it has lot of dependencies which are not available in maven repo
https://bitbucket.org/atlassian/bamboo-docker-plugin/downloads/?tab=tags
I've just verified that I can build the Bamboo Docker Plugin via the Atlassian Plugin SDK and Maven >= 3.2.5 (the SDK ships with Maven 3.2.1). This is probably the simplest way to gain access to the required Atlassian Maven Repositories that make those Atlassian dependencies available to your builds (they are not published to Maven Central). That being said, you can alternatively also add the Atlassian Plugin Repository to your own Maven installation of course:
We recommend that you use the Maven instance installed with the SDK, which is already configured to rely on the required repositories. However, if for some reason you are attempting to use a
settings.xml
file that was not installed with the Atlassian SDK, you will likely encounter problems resolving dependencies required by the SDK commands. To prevent these problems, add thepluginGroups
andprofile
elements to your localsettings.xml
file:<pluginRepository> <id>atlassian-plugin-sdk</id> <url>file://${env.ATLAS_HOME}/repository</url> <releases> <enabled>true</enabled> <checksumPolicy>warn</checksumPolicy> </releases> <snapshots> <enabled>false</enabled> </snapshots> </pluginRepository>
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.