Java Toolchains Predicate


Captures the Java toolchains used during the build.

Fields:

  • buildScanUri (URI string) - Link to the Build Scan.

  • toolchains (array of objects) - List of observed toolchains.

    • vendor (string) - Vendor identifier/name (e.g. Eclipse Adoptium, Oracle Corporation).

    • versions (array of strings) - List of Java runtime versions used (e.g. 17.0.8).

{
  "buildScanUri": "https://develocity.example.com/s/g4b7d8c1m2",
  "toolchains": [
    {
      "vendor": "Eclipse Adoptium",
      "versions": [
        "17.0.8"
      ]
    }
  ]
}