Basil Crow

Results 135 issues of Basil Crow

**Note:** All instructions here assume Java 11 (OpenJDK), but I was also able to reproduce the issue with Java 8 (OpenJDK). ### Steps to reproduce - Download [an official release...

See [JENKINS-66001](https://issues.jenkins.io/browse/JENKINS-66001). Downstream of jenkinsci/jenkins#5599, jenkinsci/workflow-api-plugin#163, and jenkinsci/workflow-support-plugin#120. Part 4 of a 5-part series to make Pipeline's `SURVIVABLE_NONATOMIC` mode behave [as advertised in the documentation](https://www.jenkins.io/doc/book/pipeline/scaling-pipeline/#what-am-i-giving-up-with-this-durability-setting-trade-off) (part 5 is in jenkinsci/workflow-job-plugin#199)....

See [`pluginFirstClassLoader` and its discontents](https://www.jenkins.io/doc/developer/plugin-development/dependencies-and-class-loading/#pluginfirstclassloader-and-its-discontents). `pluginFirstClassLoader` is explicitly _not_ recommended, and as far as I can tell it is not needed for this plugin. Simpler to just remove it and...

See [JENKINS-65988](https://issues.jenkins.io/browse/JENKINS-65988). Jenkins core is using [Guava 11.0.1](https://github.com/google/guava/releases/tag/v11.0.1), which was released on January 9, 2012. Jenkins core would like to upgrade to [Guava 30.1.1](https://github.com/google/guava/releases/tag/v30.1.1), which was released on March 19,...

Replacing usages of Guava with native Java Platform equivalents to slim down the dependency tree of this plugin.

I saw the recent changes to make this plugin work on Java 17 but I was a bit dissatisfied with having to add `--add-opens` arguments. I think the plugin can...

Depends on #455. Required for jenkinsci/jenkins#6802. Do _not_ review. This PR makes this repository require Java 11, so it is not suitable for merge. But I am filing this PR...

work-in-progress

Simpler version of #373 that just removes this functionality rather than disabling it by default. Only impact to consumers is for `jenkinsci/bom`, which I will test with the incremental build...

work-in-progress

The `java.level` property was deprecated in [plugin parent POM 4.40](https://github.com/jenkinsci/plugin-pom/releases/tag/plugin-4.40) and should be removed from this plugin's POM. In the future this warning will be changed to an error and...