-
Notifications
You must be signed in to change notification settings - Fork 529
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
[JENKINS-65445] get rid of Guava as much as possible #2163
Conversation
5441bfc
to
d6a2334
Compare
blueocean-commons/src/main/java/io/jenkins/blueocean/commons/MapsHelper.java
Outdated
Show resolved
Hide resolved
blueocean-commons/src/main/java/io/jenkins/blueocean/commons/ResourcesUtils.java
Outdated
Show resolved
Hide resolved
e2aa6e6
to
5d8d3f5
Compare
0479553
to
a8860fc
Compare
Signed-off-by: olivier lamy <[email protected]>
a8860fc
to
f98f27b
Compare
acceptance-tests/src/main/java/io/blueocean/ath/SmartWebElement.java
Outdated
Show resolved
Hide resolved
acceptance-tests/src/main/java/io/blueocean/ath/api/classic/ClassicJobApi.java
Show resolved
Hide resolved
acceptance-tests/src/main/java/io/blueocean/ath/model/Folder.java
Outdated
Show resolved
Hide resolved
acceptance-tests/src/main/java/io/blueocean/ath/pages/blue/EditorPage.java
Show resolved
Hide resolved
Signed-off-by: olivier lamy <[email protected]>
Signed-off-by: olivier lamy <[email protected]>
Signed-off-by: olivier lamy <[email protected]>
acceptance-tests/src/main/java/io/blueocean/ath/model/Folder.java
Outdated
Show resolved
Hide resolved
Signed-off-by: olivier lamy <[email protected]>
Signed-off-by: olivier lamy <[email protected]>
blueocean-commons/src/main/java/io/jenkins/blueocean/commons/DigestUtils.java
Outdated
Show resolved
Hide resolved
blueocean-rest/src/main/java/io/jenkins/blueocean/rest/pageable/PagedResponse.java
Show resolved
Hide resolved
...va/io/jenkins/blueocean/blueocean_bitbucket_pipeline/server/BitbucketServerEndpointTest.java
Outdated
Show resolved
Hide resolved
...va/io/jenkins/blueocean/blueocean_bitbucket_pipeline/server/BitbucketServerEndpointTest.java
Outdated
Show resolved
Hide resolved
@@ -249,7 +248,7 @@ private MultiBranchProject mockMbp(String credentialId, User user) { | |||
when(scmSource.getCredentialsId()).thenReturn(credentialId); | |||
when(scmSource.getRepoOwner()).thenReturn("TESTP"); | |||
when(scmSource.getRepository()).thenReturn("pipeline-demo-test"); | |||
when(mbp.getSCMSources()).thenReturn(Lists.<SCMSource>newArrayList(scmSource)); | |||
when(mbp.getSCMSources()).thenReturn( Collections.singletonList(scmSource)); |
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.
when(mbp.getSCMSources()).thenReturn( Collections.singletonList(scmSource)); | |
when(mbp.getSCMSources()).thenReturn(Collections.singletonList(scmSource)); |
blueocean-commons/src/main/java/io/jenkins/blueocean/commons/JsonConverter.java
Show resolved
Hide resolved
blueocean-commons/src/main/java/io/jenkins/blueocean/commons/ListsUtils.java
Show resolved
Hide resolved
blueocean-commons/src/main/java/io/jenkins/blueocean/commons/ListsUtils.java
Show resolved
Hide resolved
blueocean-events/src/test/java/io/jenkins/blueocean/events/SseEventTest.java
Show resolved
Hide resolved
blueocean-commons/src/main/java/io/jenkins/blueocean/commons/IterableUtils.java
Show resolved
Hide resolved
acceptance-tests/src/main/java/io/blueocean/ath/ATHJUnitRunner.java
Outdated
Show resolved
Hide resolved
Signed-off-by: olivier lamy <[email protected]>
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.
Though I would have liked to see this more divided up into separate changes. One for the logging framework change, one for Guava removal, etc.
...ne/src/main/java/io/jenkins/blueocean/blueocean_bitbucket_pipeline/AbstractBitbucketScm.java
Outdated
Show resolved
Hide resolved
Co-authored-by: Stefan Spieker <[email protected]>
Please note the method name change!
isNullOrEmpty vs isBlank ;)
On Sat, 5 Jun 2021 at 6:19 am, Stefan Spieker ***@***.***> wrote:
***@***.**** commented on this pull request.
------------------------------
In acceptance-tests/src/main/java/io/blueocean/ath/AthModule.java
<#2163 (comment)>
:
> @@ -79,7 +79,7 @@ protected void configure() {
}
capability.setCapability("extendedDebugging", "true");
capability.setCapability("initialBrowserUrl", launchUrl);
- if (!Strings.isNullOrEmpty(cfg.getString("TUNNEL_IDENTIFIER"))) {
+ if (StringUtils.isBlank(cfg.getString("TUNNEL_IDENTIFIER"))) {
I think this was different before, because there was a ! in front
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#2163 (review)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAAE2EHMJFG3QAQHPLU7LMLTREYLDANCNFSM44DYJLSQ>
.
--
Olivier Lamy
http://twitter.com/olamy | http://linkedin.com/in/olamy
|
Jacoco is now executed as part the the CI run and basic coverage numbers are reported.
@olamy |
Signed-off-by: olivier lamy <[email protected]>
@kevin-jeff-bot maybe you can create an issue with some details? (if you are not a bot) |
@bitwiseman @car-roll @olamy @rsandell What are the next steps toward getting a "standard" (i.e. non-alpha) release of this? Would be good to get this into broader distribution in advance of the forthcoming core Guava upgrade. |
sounds good I can cut a release by the end of the week. |
Description
See JENKINS-65445.
Submitter checklist
Reviewer checklist