Skip to content
New issue

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

Missing artifact fuel-android #16

Open
MrHayz opened this issue Mar 8, 2022 · 1 comment
Open

Missing artifact fuel-android #16

MrHayz opened this issue Mar 8, 2022 · 1 comment

Comments

@MrHayz
Copy link

MrHayz commented Mar 8, 2022

When adding to project through maven Pom file, an error is thrown stating "Missing artifact com.GitHub.kittinunf.fuel-android:jar:2.3.1"

@SaninfomaxUN
Copy link

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 🇨🇴 ✌

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants