Task with path `':dependencyUpdates'` not found
See original GitHub issueWhen trying to run ./gradlew buildSrcVersions
I’m getting this error:
FAILURE: Build failed with an exception.
* What went wrong:
Could not determine the dependencies of task ':app:buildSrcVersions'.
> Task with path ':dependencyUpdates' not found in project ':app'.
Issue Analytics
- State:
- Created 4 years ago
- Comments:12 (12 by maintainers)
Top Results From Across the Web
Task with path ':dependencyUpdates' not found #50 - GitHub
When trying to run ./gradlew buildSrcVersions I'm getting this error: FAILURE: Build failed with an exception. * What went wrong: Could not ...
Read more >gradle dependencyUpdates failure - Stack Overflow
What went wrong: Task 'gradle' not found in project ':app'. Some candidates are: 'bundle'. Try: Run gradle tasks to get a list of...
Read more >ben-manes / gradle-versions-plugin Download - JitPack
Tasks. dependencyUpdates. Displays a report of the project dependencies that are up-to-date, exceed the latest version found, have upgrades, or failed to be ......
Read more >Task 'run' not found in root project - Gradle Forums
Task 'run' not found in root project 'LAB4'. Try: Run gradle tasks to get a list of available tasks. Run with --stacktrace option...
Read more >build.gradle - ofbiz-framework - Git at Google
activate Gradle's DependencyUpdates plugin and its related tasks. ... throw new GradleException("Could not find plugin with id ${pluginId}").
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
The plug-in should be applied in
./build.gradle
not in./app/build.gradle
like in your project.Acknowledged. Thanks for the quick reply!