Convert play-ws groovy to java#12377
Conversation
925d932 to
faf245c
Compare
|
it stuck with this error in the CI log but i can't seem to repro locally. 2.1 regular test uses |
According to related hint, you can reproduce it locally by executing |
|
thanks @steverao! i was able to repro per your comment and fix it. Logs in Develocity seems more useful. I didn't check there and i forgot how to get there. Hint please? |
@heyams i usually open the failed build step logs in the browser and search for the words "build scan". There will often be multiple so look for the one following the "FAILED" indicator. Use that link to generate a link to develocity |
thanks @jaydeluca. |
| exclude("com.typesafe.play", "play-ahc-ws-standalone_$scalaVersion") | ||
| tasks { | ||
| if (testLatestDeps) { | ||
| // disable regular test running and compiling tasks when latest dep test task is run |
There was a problem hiding this comment.
comment is a bit misleading, as far as I can tell compile task is not disabled
There was a problem hiding this comment.
this is only disabling test module. why do i need disable compile task?
| import play.shaded.ahc.org.asynchttpclient.DefaultAsyncHttpClientConfig; | ||
| import play.shaded.ahc.org.asynchttpclient.RequestBuilderBase; | ||
|
|
||
| abstract class PlayWsClientBaseTest<REQUEST> extends AbstractHttpClientTest<REQUEST> { |
There was a problem hiding this comment.
Groovy version doesn't have separate sources for the latest dep tests. Are you sure we need to copy paste these for the latest dep tests?
There was a problem hiding this comment.
new version uses different packages for a lot of classes. initially, I tried reflection, but there were too many changes. that is why i have created a new module. it's not exactly the same though if you look closely.
|
when I run |
|
Co-authored-by: Lauri Tulmin <ltulmin@splunk.com>
Co-authored-by: Lauri Tulmin <ltulmin@splunk.com>
Related to #7195