How to retrieve the JDK versions used across Build plans and Deployment plans

プラットフォームについて: Data Center のみ。 - This article only applies to Atlassian apps on the Data Center プラットフォーム

この KB は Data Center バージョンの製品用に作成されています。Data Center 固有ではない機能の Data Center KB は、製品のサーバー バージョンでも動作する可能性はありますが、テストは行われていません。 Server* 製品のサポートは 2024 年 2 月 15 日に終了しました。Server 製品を実行している場合は、 アトラシアン Server サポート終了 のお知らせにアクセスして、移行オプションを確認してください。

*Fisheye および Crucible は除く

要約

To quickly retrieve the JDK versions used in the build plans and deployment plans you can run the below query in your Bamboo database.

ソリューション

Please run the below query to get all the build plans using JDK.

SELECT b.full_key, r.key_identifier FROM build b JOIN requirement r ON b.requirement_set = r.requirement_set WHERE key_identifier LIKE '%jdk%';

Please run the below query to get all the deployment plans using JDK.

SELECT dp.name AS Deployment_plan_name,        d.name  AS Enviorement_name,        r.key_identifier FROM   deployment_environment d        JOIN requirement r          ON d.requirement_set = r.requirement_set        JOIN deployment_project dp          ON d.package_definition_id = dp.deployment_project_id WHERE  key_identifier LIKE '%jdk%'; 
更新日時: September 25, 2025

さらにヘルプが必要ですか?

アトラシアン コミュニティをご利用ください。