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.
I'm trying to have some work be done after a failure on a build has occurred. I need access to the build manager but can't find a way to do so.
The documentation I found seems to be deprecated:
https://developer.atlassian.com/server/bamboo/accessing-bamboo-components-from-plugin-modules/
How can I access the build manager in an event listener so I can search for a specific build?
Found the solution.
Using the deprecated document:
https://developer.atlassian.com/server/bamboo/accessing-bamboo-components-from-plugin-modules/
Along with the information from here:
https://bitbucket.org/atlassian/atlassian-spring-scanner?_ga=2.200096935.827920754.1537203458-197927870.1530309398
I was able to use bamboo components in my plugin module.
Example:
@Scanned
public class SomeEventListener{
@ComponentImport
private final ResultsSummaryManager resultsSummaryManager;
@ComponentImport
private final CachedPlanManager planManager;
public FailedPlanEventListener(ResultsSummaryManager resultsSummaryManager,
CachedPlanManager planManager)
{
this.resultsSummaryManager = resultsSummaryManager;
this.planManager = planManager;
}
Note the @Scanned and @ComponentImport annotations are essential.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.