Cannot find new versions for dependencies in `allprojects`
See original GitHub issueNot sure if the title is right. I have the following in my main build.gradle
file:
plugins {
id 'checkstyle'
}
allprojects {
apply plugin: 'checkstyle'
dependencies {
checkstyle 'com.puppycrawl.tools:checkstyle:8.23'
}
}
Running gradle dependencyUpdates
leads to:
Failed to determine the latest version for the following dependencies (use --info for details):
- com.puppycrawl.tools:checkstyle
8.23
Not sure why. Any ideas?
Issue Analytics
- State:
- Created 4 years ago
- Comments:13 (7 by maintainers)
Top Results From Across the Web
firebase - I didnt see Allprojects repositories - Stack Overflow
To resolve it, simply go to "settings.gradle" file comment off the whole block for 'dependencyResolutionManagement'. Then reSync your project ...
Read more >Sharing dependency versions between projects
Each catalog is visible to all projects of a build. It is a central place to declare a version of a dependency and...
Read more >Add build dependencies - Android Developers
Learn how to add build dependencies using the Gradle build system in Android Studio.
Read more >Fix "Error Could not find method implementation() for ...
Method 1: Update to the latest Gradle version; Method 2: Change “implementation” to “compile”; Method 3: Move dependencies to module build.
Read more >Reinstalling and updating packages - NuGet - Microsoft Learn
Update-Package –reinstall reinstalls the same version of the original package, but installs the latest version of dependencies unless specific ...
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 Free
Top 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
Good, just wanted to be sure. You need to specify repositories in the all projects block, too.
OK, fair enough. Thank you for the great support! I’ll leave you to decide whether to close the issue or leave it as a reference. Thanks again!