Exam DVA-C02 All QuestionsBrowse all questions from this exam
Question 335

A developer is using an AWS CodePipeline pipeline to provide continuous integration and continuous delivery (CI/CD) support for a Java application. The developer needs to update the pipeline to support the introduction of a new application dependency .jar file. The pipeline must start a build when a new version of the .jar file becomes available.

Which solution will meet these requirements?

    Correct Answer: D

    The correct solution involves using an AWS CodeArtifact repository because it is designed for managing application dependencies, like .jar files. After publishing the dependency .jar file to the repository, an Amazon EventBridge rule can be set up to trigger the CodePipeline pipeline build when a new version of the .jar file is available. This ensures seamless integration and builds initiation based on updates to the dependent files.

Discussion
KarBiswaOption: D

https://docs.aws.amazon.com/codeartifact/latest/ug/configure-service-events-codepipeline.html#configure-service-events-codepipeline-create-rule

trungtdOption: D

AWS CodeArtifact is a managed artifact repository service that lets you securely store, publish, and share software packages.

AnandeshOption: D

https://docs.aws.amazon.com/codeartifact/latest/ug/configure-service-events-codepipeline.html

AlabiOption: D

D is correct Keyword for using CodeArtifact is Dependency

65703c1Option: D

D is the correct answer.