-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fallback to old guava API if needed and avoid core bump #1
Conversation
@@ -64,7 +64,7 @@ | |||
<properties> | |||
<revision>2.42</revision> | |||
<changelist>-SNAPSHOT</changelist> | |||
<jenkins.version>2.273-rc30689.09147672b85b</jenkins.version> | |||
<jenkins.version>2.176.4</jenkins.version> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can we use a supported one at least, most of the others were recently bumped to 2.222.4
<jenkins.version>2.176.4</jenkins.version> | |
<jenkins.version>2.222.4</jenkins.version> |
@@ -105,11 +105,6 @@ | |||
<artifactId>workflow-basic-steps</artifactId> | |||
<scope>test</scope> | |||
</dependency> | |||
<dependency> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
may need to re-add on newer core depending on why this was in here
private static ExecutorService newExecutorService() { | ||
try { | ||
try { | ||
Method method = MoreExecutors.class.getMethod("newDirectExecutorService"); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can you invert this please as in c5ecc11
(#114) (was requested until core PR is merged)
huh, I just checked out this branch via github cli and then did a |
No description provided.