You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update Gradle task dependencies to remove dependsOn 'build' task (#7255)
It is generally discouraged to add dependencies on 'build', so 'javadocCleanup'
and 'jacocoTestReport' have been removed and put on better tasks. Also,
'jacocoTestReport' needs input from the test results.
Updated task dependencies:
- Gradle 'javadoc' task is finalized by 'javadocCleanup', and 'javadocCleanup'
no longer directly invoked by 'build'
- Gradle 'jacocoTestReport' task run by 'check' instead of 'build', and
'jacocoTestReport' depends on 'test' and 'testng'
Changes due to dependency updates:
- Add 'javadoc' generation task on Github actions that only 'build'
- Remove 'javadocCleanup' task from Github action as 'publish...' tasks
already dependent on 'javadoc'
Miscellaneous tangential cleanup:
- Remove "pr" parameter on command line in Github workflow as parameter
is no longer functional
- Enclose source/target compatibility in Gradle java block
Copy file name to clipboardExpand all lines: build.gradle
+13-6
Original file line number
Diff line number
Diff line change
@@ -36,9 +36,6 @@ group = "io.reactivex.rxjava3"
36
36
version = project.properties["VERSION_NAME"]
37
37
description ="RxJava: Reactive Extensions for the JVM – a library for composing asynchronous and event-based programs using observable sequences for the Java VM."
0 commit comments