jspecify API

Build Status Contributors Jenkins Plugin GitHub release Jenkins Plugin Installs

This plugin provides JSpecify v1.x to Jenkins Plugins.

Version will be "<jspecify version>-<plugin version>", so it is clear what upstream dependency it is offering and plugin can be patched by "plugin version" if required.

How to introduce to your plugin

Plugins directly depending on jspecify

Replace the dependency to org.jspecify:jspecify with the dependency to jspecify-api.

  • Before:
    <dependencies>
      ...
      <dependency>
        <groupId>org.jspecify</groupId>
        <artifactId>jspecify</artifactId>
        <version>1.0.0</version>
      </dependency>
      ...
    </dependencies>
    
  • After:
    <dependencies>
      ...
      <dependency>
        <groupId>io.jenkins.plugins</groupId>
        <artifactId>jspecify-api</artifactId>
        <version>1.0.0-v{latest-release}</version>
      </dependency>
      ...
    </dependencies>