Feedback welcome :relaxed: - 1.4.0-dev-62 `maven("...
# dokka
s
Feedback welcome ☺️ • 1.4.0-dev-62
maven("<https://maven.pkg.jetbrains.space/kotlin/p/dokka/dev>")
🎉 6
e
Copy code
Plugin [id: 'org.jetbrains.dokka', version: '1.4.0-dev-62'] was not found in any of the following sources:
although I have
Copy code
repositories {
    ...
    maven { url = uri("<https://maven.pkg.jetbrains.space/kotlin/p/dokka/dev>") }
}
s
The repository has to be added to buildscript/pluginManagment as well as to the actual project 🙄
Copy code
buildscript {
    repositories { 
        maven("<https://maven.pkg.jetbrains.space/kotlin/p/dokka/dev>")
    } 
}

allprojects {
    repositories { 
        maven("<https://maven.pkg.jetbrains.space/kotlin/p/dokka/dev>")
    }
}
e
I'm not using
buildscript
since ages. How to add that in
plugins { }
?
s
From the back of my head (sorry, I am currently in a train)
settings.gradle.kts
Copy code
pluginManagement {
   repositories { 
        maven("<https://maven.pkg.jetbrains.space/kotlin/p/dokka/dev>")
    }
}
e
the syntax should be correct, double checked online, but as soon as I add that in the
settings.gradle.kts
Gradle fires now
Plugin [id: 'org.jetbrains.kotlin.jvm', version: '1.4.0'] was not found
m
@Sebastian Sellmair [JB] do you have a brief changelog / highlights?
thanks for all your great work!
b
Yeah, gradle won't resolve that repository for me either. I'm getting the same error.
s
Copy code
pluginManagement {
   repositories { 
        gradlePluginPortal() // <<-- also from the back of my head, RN
        maven("<https://maven.pkg.jetbrains.space/kotlin/p/dokka/dev>")
    }
}
@Mike Penz Thanks! Unfortunately, I have not set up any tooling for tracking changelog between this kind of dev builds. But I will try to improve this. As I can see, its mostly bug-fixes and smaller enhancements. Bigger PRs (like making multi module documentation smoother) are expected to land in 1.4.10. The biggest feature for 1.4.0 will be the Gradle Plugin improvements (alongside aaaall this bugfixes ☺️ )
🎉 1
b
Hmmmm, adding the plugin portal didn't do anything either. I'm using kotlin 1.4.0. Not sure what I am missing:
Copy code
- Plugin Repositories (could not resolve plugin artifact 'org.jetbrains.dokka:org.jetbrains.dokka.gradle.plugin:1.4.0-rc-62')
  Searched in the following repositories:
    Gradle Central Plugin Repository
    MavenRepo
    BintrayJCenter
    maven(<https://maven.pkg.jetbrains.space/kotlin/p/dokka/dev>)
s
Copy code
1.4.0-rc-62
should be 1.4.0-dev-62
b
Oh whoops, I'm a fish. ty
🐟 1
😁 1
e
path: String
became
localDirectory: Property<File?>
?
👌 1
👍 1
s
Somebody in the JetBrains slack posted a cool idea on listing all available dokka versions on space packages, that you might be interested: https://maven.pkg.jetbrains.space/kotlin/p/dokka/dev/org/jetbrains/dokka/dokka-core/maven-metadata.xml
But I am currently talking to the space team to help us out here also ☺️