-
Notifications
You must be signed in to change notification settings - Fork 916
Fix Java 11 build #1139
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
Fix Java 11 build #1139
Conversation
|
||
# Set up logging implementation | ||
org.eclipse.jetty.util.log.class=org.eclipse.jetty.util.log.StdErrLog | ||
org.eclipse.jetty.LEVEL=WARN |
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.
minor: How much extra logging will this create? Just worried about the log size in Travis
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.
Good point, will change it to OFF
The test is happy but spotbugs failed :( |
Codecov Report
@@ Coverage Diff @@
## master #1139 +/- ##
============================================
- Coverage 58.82% 58.75% -0.07%
+ Complexity 4566 4556 -10
============================================
Files 742 742
Lines 22895 22941 +46
Branches 1707 1713 +6
============================================
+ Hits 13468 13480 +12
- Misses 8735 8772 +37
+ Partials 692 689 -3
Continue to review full report at Codecov.
|
e94b7b2
to
27fd9c1
Compare
aws-sdk-java/pom.xml
Outdated
<dependencies> | ||
<dependency> | ||
<groupId>software.amazon.awssdk</groupId> | ||
<artifactId>bom-internal</artifactId> |
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.
Why does this need the BOM?
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.
This is something I tried to make it build with CodeBuild on this module. After this change, this module can be built successfully but other module fails of the same reason "Connection Reset". I can remove this.
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.
Ah okay. Yeah let's remove it for now, this module shouldn't need it.
Add find bug suppress warnings for false positive bug found by findbug
Description
See Mac Java 11 NettyNioAsyncHttpClientSpiVerificationTest Failed #1038
Root cause is an known issue in wiremock with Java 11 wiremock/wiremock#1009. Changed
CONNECTION_RESET_BY_PEER
toRANDOM_DATA_THEN_CLOSE
instead to fix the test.Fix false positive bugs reported by spotbugs
Update travis script to run java 11 for obvious reasons.
Screenshots (if appropriate)
Types of changes
Checklist
mvn install
succeedsLicense