louiscad
04/12/2019, 1:12 PMenableFeaturePreview("GRADLE_METADATA")
still needed for Multiplatform projects on Gradle 5.3.1, where gradle metadata is stable?Jurriaan Mous
04/12/2019, 1:17 PMHowever, Gradle 5.3 will not automatically publish it by default — that will come in 6.0. You can publish Gradle Module Metadata today, but you have to opt into its publication by using either the Maven Publish or Ivy Publish plugins and enabling the experimental publishing feature by adding the following line to your settings script:
settings.gradle(.kts)
enableFeaturePreview("GRADLE_METADATA")
Seems from Gradle 6 and higher:
https://blog.gradle.org/gradle-metadata-1.0h0tk3y
04/12/2019, 1:39 PMribesg
04/12/2019, 1:42 PMh0tk3y
04/12/2019, 1:43 PM