SnakeYAML API

This plugin packages stock Snakeyaml library. This component can be used by other plugins as a dependency. It allows managing library updates independently from plugins.

How to introduce to your plugin

Plugins directly depending on snakeyaml

Replace the dependency to org.yaml:snakeyaml with the dependency to io.jenkins.plugins:snakeyaml-api.

  • Before:
    <dependencies>
      ...
      <dependency>
        <groupId>org.yaml</groupId>
        <artifactId>snakeyaml</artifactId>
        <version>1.26</version>
      </dependency>
      ...
    </dependencies>
    
  • After:
    <dependencies>
      ...
      <dependency>
        <groupId>io.jenkins.plugins</groupId>
        <artifactId>snakeyaml-api</artifactId>
        <version>1.26.2</version>
      </dependency>
      ...
    </dependencies>
    

Release Notes

See the Changelog.

License