Whoops, right, that worked. Thanks, all! I had to ...
# random
j
Whoops, right, that worked. Thanks, all! I had to specify the Kotlin version specifically in Gradle:
Copy code
dependencies {
    compile "org.jetbrains.kotlin:kotlin-stdlib-jdk8:$kotlin_version"
}
...which I didn't have to do before, since the Kotlin plugin added the version automatically. Is there a way to include the implicit version from the plugin when uploading, or does it need to be explicit (like this)?
g
There is an issue about that. But it should be fixed already. What is your Kotlin Gradle plugin version?
j
1.2.21
Here's what my
build.gradle
currently looks like - https://gist.github.com/jdkula/bd2bcd759a40156c66c3a83a45c9b76b
Maybe you should also update Gradle wrapper
j
Just tried... nope, still not included in the output pom.
Maybe it's a quirk with Bintray's gradle plugin specifically
g
You probably should report your case to this issue
Bintray plugin doesn't generate pom itself do you use maven-publish plugin?
j
Yup, I do -- I'll report it.