Ask Your Question
4

What is the method for instructing dependabot to maintain the identical version of several Java libraries?

asked 2023-06-01 17:59:08 +0000

bukephalos gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
0

answered 2023-06-01 18:24:02 +0000

scrum gravatar image

To instruct Dependabot to maintain the identical version of several Java libraries, you can add a version or versions field to your configuration file, specifying the version(s) you want to use.

For example, if you want to use version 1.2.3 of two libraries called library-a and library-b, you can add the following to your dependabot.yml configuration file:

updates:
  - package-ecosystem: "maven"
    directory: "/"
    schedule:
      interval: "daily"
    filter:
      include:
        - dependency-name: "library-a"
          type: "direct"
        - dependency-name: "library-b"
          type: "direct"
    versions:
      library-a: "1.2.3"
      library-b: "1.2.3"

This will ensure that Dependabot only updates those libraries to version 1.2.3, and not to any other version that may be available.

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-01 17:59:08 +0000

Seen: 7 times

Last updated: Jun 01 '23