[Error] Unable to resolve all the dependencies.
See original GitHub issueHi,
First of all, thanks for coming up with such a great idea of a Maven plugin. Love it!
Running the plugin as described in the Readme.md with versions 1.1.0 and 1.1.2 leads always to the error message
[Error] Unable to resolve all the dependencies.
Running Maven in debug mode with -X did not really help … any idea what could be wrong? I tried to declare the plugin in the pom but also just ran the plugin directly from the command line with all the params in the CLI.
Btw. we develop the apps in an enterprise setup where we have proxies, self-signed certs and so on.
Best, Patrick
Issue Analytics
- State:
- Created 3 years ago
- Comments:15
Top Results From Across the Web
Unable to resolve dependency for ':app@debug ...
I just figured out how to remove this gradle error, follow the following steps. Go to "File". Click on Invalidate Cache/ Restart.
Read more >Android Studio “Unable to resolve dependency” Error - Medium
The most of users encounter errors like “Unable to resolve dependency for ':app@debug/ compileClasspath': Could not find any
Read more >Problem: Unable to resolve dependencies of NuGet packages
Solution. To resolve the problem, perform the following: Clear the NuGet cache files. You do this in the following way:
Read more >Could not resolve all dependencies - Manjaro Linux Forum
Could not resolve all dependencies ... makepkg -i ==> Making package: packettracer 8.1.1-1 (Tue 24 May 2022 06:05:01 AM MDT) ==> Checking runtime ......
Read more >Unable to resolve dependency tree error in Angular while ...
To fix Unable to resolve dependency tree error in Angular while installing `npm` packages follow the below steps. 1.
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
Thanks @cesarsotovalero
It works now, but the result is not satisfying. Anyhow, wow! I am impressed! 👍
Would be great if it could find all jars needed if I start the app. .e.g Tomcat, Spring Context/Beans, etc. should be shown.
Hi @patbaumgartner,
DepClean has an
ignoreDependencies
parameter to skip the analysis of custom dependencies (see https://github.com/castor-software/depclean#optional-parameters). Since we cannot cover all the possible reflection-based libraries, we prefer to let this decision to developers 😄DepClean can detect classes or class members that are created or invoked dynamically using basic constructs such as
class.forName("someClass")
orclass.getMethod("someMethod", null)
. To do so, DepClean parses the constant pool of the class files (see https://github.com/castor-software/depclean/blob/master/depclean-core/src/main/java/se/kth/depclean/core/analysis/asm/ConstantPoolParser.java#L94-L158)If you know any other trick to deal with reflection: your contribution is more than welcome!