has anybody else ran into publishing a library dep...
# gradle
m
has anybody else ran into publishing a library depending on kotlin, not including the version in the POM? so like
api(kotlin("stdlib-jre8"))
and running
./gradlew genPom
with the
maven-publish
plugin and getting a dependency without the version?
Copy code
<dependency>
      <groupId>org.jetbrains.kotlin</groupId>
      <artifactId>kotlin-stdlib-jre8</artifactId>
      <scope>compile</scope>
    </dependency>
g
m
ok sounded familiar, thanks for link
g
Now three of us, I think we definitely should create an issue 😂
m
hah definitely
c
I'm a bit drunk right now, but will upvote if someone takes th e responsobility
🍺 3
m
im in the process of writing it up, will post it here after
🍷 2
c
is it kotlin's bug though or publish?
g
I do not drunk, but 3am here, so your are our only hope! 🙏
💤 1
I suppose we should create a task for Kotlin Gradle Plugin, because this is feature of plugin (omit dependency version)
m
im not actually sure if it is a problem for the kotlin gradle plugin or in gradle core
g
+1 for kotlin gradle plugin
m
i
This issue might be related, see the comment by @h0tk3y there https://youtrack.jetbrains.com/issue/KT-21203
m
that does look related and seems to indicate that problem is more in gradle core, thanks for link @ilya.gorbunov