We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When adding to project through maven Pom file, an error is thrown stating "Missing artifact com.GitHub.kittinunf.fuel-android:jar:2.3.1"
The text was updated successfully, but these errors were encountered:
I finally found a temporary solution. ✅ Add the exclusion to thit artifact, inside the dependency in the pom.xml:
<exclusions> <exclusion> <groupId>com.github.kittinunf.fuel</groupId> <artifactId>fuel-android</artifactId> </exclusion> </exclusions>
So the complete dependency would be:
<dependency> <groupId>com.github.husnjak</groupId> <artifactId>IGDB-API-JVM</artifactId> <version>1.0.5</version> <exclusions> <exclusion> <groupId>com.github.kittinunf.fuel</groupId> <artifactId>fuel-android</artifactId> </exclusion> </exclusions> </dependency>
This way, you won't have any problems with Maven and you will be able to build. Salu2 from 🇨🇴 ✌
Sorry, something went wrong.
No branches or pull requests
When adding to project through maven Pom file, an error is thrown stating "Missing artifact com.GitHub.kittinunf.fuel-android:jar:2.3.1"
The text was updated successfully, but these errors were encountered: