From c2182b766a65619c859c0fc871a8a6334d66f199 Mon Sep 17 00:00:00 2001 From: Kamil Doległo <9080183+kamildoleglo@users.noreply.github.com> Date: Wed, 23 Jun 2021 12:33:19 +0200 Subject: Add maven central publication (#1688) * Add OSSRH repositories * Rewrite Gradle plugin publication * Add publication version assertion * Use Nexus publish plugin for publishing to Sonatype * Remove explicit publishing from s3 tests * Don't document Dokka for local publication * Fix a bug with closing Sonatype repository * Bump internal Dokka version * Move publication version check to the validate task * Fix Gradle plugin publication * Bump Dokka and gradle plugin-publish versions * Do not run Dokka for test tasks * Do not fail all runs in a workflow * Reduce JVM memory limit --- gradle.properties | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gradle.properties') diff --git a/gradle.properties b/gradle.properties index f82dc91e..0532c422 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,6 +1,6 @@ # Project Settings dokka_version_base=1.5.0 -dokka_publication_channels=bintray-kotlin-dev&space-dokka-dev +dokka_publication_channels=maven-central-snapshot&space-dokka-dev dokka_integration_test_parallelism=2 # Versions kotlin_version=1.5.0 @@ -13,5 +13,5 @@ language_version=1.4 # Code style kotlin.code.style=official # Gradle settings -org.gradle.jvmargs=-Xmx4g -XX:MaxMetaspaceSize=1g -org.gradle.parallel=true \ No newline at end of file +org.gradle.jvmargs=-Xmx6g -XX:MaxMetaspaceSize=2g +org.gradle.parallel=true -- cgit