From 8e5c63d035ef44a269b8c43430f43f5c8eebfb63 Mon Sep 17 00:00:00 2001 From: Ignat Beresnev Date: Fri, 10 Nov 2023 11:46:54 +0100 Subject: Restructure the project to utilize included builds (#3174) * Refactor and simplify artifact publishing * Update Gradle to 8.4 * Refactor and simplify convention plugins and build scripts Fixes #3132 --------- Co-authored-by: Adam <897017+aSemy@users.noreply.github.com> Co-authored-by: Oleg Yukhnevich --- gradle.properties | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'gradle.properties') diff --git a/gradle.properties b/gradle.properties index e1bbd2bb..be8f83ba 100644 --- a/gradle.properties +++ b/gradle.properties @@ -3,14 +3,16 @@ # # Project Settings -dokka_version=1.9.20-SNAPSHOT +group=org.jetbrains.dokka +version=1.9.20-SNAPSHOT + org.jetbrains.dokka.javaToolchain.mainCompiler=8 org.jetbrains.dokka.javaToolchain.testLauncher=8 org.jetbrains.dokka.kotlinLanguageLevel=1.4 -dokka_integration_test_parallelism=2 # Code style kotlin.code.style=official + # Gradle settings org.gradle.jvmargs=-Xmx6g -XX:MaxMetaspaceSize=2g org.gradle.parallel=true -- cgit