It seems your project is set up in such a way that you are dependent on kotlin-stdlib 1.1 and kotlin-reflect 1.0. The most likely case is that you already have an explicit dependency on kotlin-stdlib 1.1, but have no dependency on kotlin-reflect , and some other library (which you depend on) depends on kotlin-reflect 1.0.
If this is true, the solution should provide explicit dependency on kotlin-reflect 1.1.
In Maven, add this to pom.xml :
<dependencies> <dependency> <groupId>org.jetbrains.kotlin</groupId> <artifactId>kotlin-reflect</artifactId> <version>1.1.0</version> </dependency> </dependencies>
In Gradle, add this to build.gradle :
dependencies { compile "org.jetbrains.kotlin:kotlin-reflect:1.1.0" }
See information on this and related warnings in white papers .
Alexander Udalov
source share