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.
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>