question-mark
Stuck on an issue?

Lightrun Answers was designed to reduce the constant googling that comes with debugging 3rd party libraries. It collects links to all the places you might be looking at while hunting down a tough bug.

And, if you’re still stuck at the end, we’re happy to hop on a call to see how we can help out.

Adding fuel 1.6.0 to my pom breaks my build

See original GitHub issue

My project builds and runs successfully. Then I add this to my pom:

<dependency>
  <groupId>com.github.kittinunf.fuel</groupId>
  <artifactId>fuel</artifactId>
  <version>1.6.0</version>
</dependency>

And my project build fails with this error:

Error:Kotlin: Supertypes of the following classes cannot be resolved. Please make sure you have the required dependencies in the classpath:
    class kotlinx.coroutines.experimental.CoroutineDispatcher, unresolved supertypes: kotlin.coroutines.experimental.AbstractCoroutineContextElement, kotlin.coroutines.experimental.ContinuationInterceptor
    class kotlinx.coroutines.experimental.Job, unresolved supertypes: kotlin.coroutines.experimental.CoroutineContext.Element

This doesn’t make since. Why would adding a jar break my build? And all my code that uses coroutines now produce compile errors.

Issue Analytics

  • State:closed
  • Created 6 years ago
  • Comments:11 (3 by maintainers)

github_iconTop GitHub Comments

1reaction
kittinunfcommented, May 8, 2017

Can you exclude Kotlin version from Fuel and rely on your supplied Kotlin version?

Something like this in gradle build, not sure whether what build tool you are using

compile ('com.github.kittinunf.fuel:fuel:1.6.0') {
     exclude group: 'org.jetbrains.kotlin'
  }
0reactions
SleeplessBytecommented, Nov 2, 2018

@Danilo-Araujo-Silva 1.16.0 is not released, as you can see on the readme: https://bintray.com/kittinunf/maven/Fuel-Android/1.15.1

Read more comments on GitHub >

github_iconTop Results From Across the Web

Adding fuel 1.6.0 to my pom breaks my build #160 - GitHub
I'm having the same problem with the lastest release of kotlin, 1.3.0. I don't know why but my build breaks when I include...
Read more >
How to solve "Plugin execution not covered by lifecycle ...
Fixes the error in Eclipse, but breaks the generation of WS code with <goal> wsimport using jaxws-maven-plugin. "Permanently mark goal wsimport in pom.xml...
Read more >
Untitled
Proof is in the pudding bones, Xbox mfr date jasper, Forita de maimara, Interfaz digital de ... Sabine auriacombe, Phoenix referral, Ares build...
Read more >
Choosing OSGi Versions During Development - Liferay Community
When I declare that my version is 2.6.0, the OSGi container thinks that I'm actually ... in your pom.xml or build.gradle file; although...
Read more >
Maven: The Complete Reference - Sonatype Help
Maven is a build tool, a project management tool, an abstract container for running build tasks. It is a.
Read more >

github_iconTop Related Medium Post

No results found

github_iconTop Related StackOverflow Question

No results found

github_iconTroubleshoot Live Code

Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free

github_iconTop Related Reddit Thread

No results found

github_iconTop Related Hackernoon Post

No results found

github_iconTop Related Tweet

No results found

github_iconTop Related Dev.to Post

No results found

github_iconTop Related Hashnode Post

No results found