Cannot find maven dependency
See original GitHub issueI am using the following dependency to import the finder methods in the Appium Flutter driver, but my IDE cannot find them.
<dependency>
<groupId>pro.truongsinh</groupId>
<artifactId>appium-flutter-finder</artifactId>
<version>0.0.4</version>
</dependency>
Issue Analytics
- State:
- Created 3 years ago
- Comments:5
Top Results From Across the Web
Maven dependency not found - Stack Overflow
Maven dependency not found · Uninstalling and reinstalling Intellij · Invalidate caches/Restart · Deleting the maven folder in the .Intellij folder ...
Read more >Maven dependencies not being found
I am using the Spigot API. Within the class JavaPlugin appears in red and it says that it can't be resolved. <repositories> <repository>...
Read more >How to find out where a Maven dependency comes from
If you tell Maven to print a dependency tree, you will be able to see all of the dependencies in your project. To...
Read more >Maven Repo: Could not resolve dependencies ... - GitLab
Maven Repo : Could not resolve dependencies - Could not find artifact. Hello, I am working on a pipeline for my Java/Maven projects....
Read more >Import Maven dependencies in IntelliJ IDEA - JanBask Training
You can enable such feature going to File > Settings > Maven > Importing, there is a checkbox that says "Import Maven projects...
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
@sahanaprasad you can get appium-flutter-finder dependency from here and keep it in your local machine and passed its path in pom.xml
pom.xml snippet: ``` <repository> <id>local-maven-repo</id>
@sahanaprasad and @ahashmi24 FYI, I had to change the appium-flutter-finder-0.0.4.pom file in the repository.zip file. It was pointing to a version of the kotlinx-serialization-runtime dependency that doesn’t exist in Maven. I changed the version from 0.11.1 to 0.14.0; 0.20.0 does not work.