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
{{ message }}
This repository has been archived by the owner on Feb 2, 2025. It is now read-only.
When running ./gradlew kotest as specified in the plugin's README.md the command fails.
zcash-kotlin-payment-uri % ./gradlew kotest
FAILURE: Build failed with an exception.
* What went wrong:
Task 'kotest' not found in root project 'zcash-kotlin-payment-uri' and its subprojects. Some candidates are: 'test'.
`Project.convention` and other conventions API methods have been
deprecated and will be removed in Gradle 9.0. To make things worse, the
`Project.convention.plugins["java"]` does not return
`DefaultJavaPluginConvention` anymore, but instead returns a wrapper
class that issues deprecation warnings. Since the plugin cannot find the
expected class, it stopped working properly (this is probably the cause
of kotest#53).
This pull requests simply replaces the single use of
`Project.convention.plugins[]` (finding the Java test sourceset) with
`Project.extensions.findByType`.
Fixes: kotest#42, kotest#53
`Project.convention` and other conventions API methods have been
deprecated and will be removed in Gradle 9.0. To make things worse, the
`Project.convention.plugins["java"]` does not return
`DefaultJavaPluginConvention` anymore, but instead returns a wrapper
class that issues deprecation warnings. Since the plugin cannot find the
expected class, it stopped working properly (this is probably the cause
of #53).
This pull requests simply replaces the single use of
`Project.convention.plugins[]` (finding the Java test sourceset) with
`Project.extensions.findByType`.
Fixes: #42, #53
Sign up for freeto subscribe to this conversation on GitHub.
Already have an account?
Sign in.
When running
./gradlew kotest
as specified in the plugin's README.md the command fails.how to reproduce:
5122b609f141693bd69091b2f93211eb5d56a50d
./gradlew kotest
The text was updated successfully, but these errors were encountered: