IGDB-API-JVM icon indicating copy to clipboard operation
IGDB-API-JVM copied to clipboard

Missing artifact fuel-android

Open MrHayz opened this issue 4 years ago • 1 comments

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

MrHayz avatar Mar 08 '22 04:03 MrHayz

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

SaninfomaxUN avatar Jul 01 '22 00:07 SaninfomaxUN