Abhimanyu
03/04/2025, 2:55 AM2.0.0
, but I see the following message.
Is there anyway to show the message only for projects using the old version instead?Abhimanyu
03/04/2025, 2:55 AM> Configure project :
warning: Dokka Gradle plugin V1 is deprecated
Dokka Gradle plugin V1 is deprecated, and will be removed in Dokka version 2.1.0
Please migrate to Dokka Gradle plugin V2. This will require updating your project.
To learn about migrating read the migration guide <https://kotl.in/dokka-gradle-migration>
To start migrating to Dokka Gradle plugin V2 add
org.jetbrains.dokka.experimental.gradle.pluginMode=V2EnabledWithHelpers
into your project's `gradle.properties` file.
We would appreciate your feedback!
- Please report any feedback or problems <https://kotl.in/dokka-issues>
- Chat with the community visit #dokka in <https://kotlinlang.slack.com/> (To sign up visit <https://kotl.in/slack>)
Abhimanyu
03/04/2025, 2:56 AMgradlew
command?Robert Jaros
03/04/2025, 5:23 AMAbhimanyu
03/04/2025, 5:35 AMAbhimanyu
03/04/2025, 5:36 AMRobert Jaros
03/04/2025, 5:37 AMorg.jetbrains.dokka.experimental.gradle.pluginMode=V2Enabled
property and just configure plugin v2.Robert Jaros
03/04/2025, 5:39 AMorg.jetbrains.dokka.experimental.gradle.pluginMode.noWarn=true
org.jetbrains.dokka.experimental.tryK2=true
org.jetbrains.dokka.experimental.tryK2.nowarn=true
Abhimanyu
03/04/2025, 5:42 AMsolonovamax
03/05/2025, 5:24 PMgradle.properties
kotlin.code.style=official
org.gradle.caching=true
org.gradle.parallel=true
org.gradle.configureondemand=true
# This *may* cause some issues depending on what plugins you use. test it to see if it works or not.
# see: <https://docs.gradle.org/current/userguide/performance.html#enable_configuration_cache>
#org.gradle.configuration-cache=true
all of these are performance improvements
though they will mainly begin to show effects on larger projects, there's no reason not to have them.