diff options
author | Kamil Doległo <9080183+kamildoleglo@users.noreply.github.com> | 2021-06-23 12:33:19 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-23 12:33:19 +0200 |
commit | c2182b766a65619c859c0fc871a8a6334d66f199 (patch) | |
tree | 41624b51bcdb79f7f48fc436878b35120d77197d /plugins/base | |
parent | 522775119b1f31d5f478662402eb29a5de9e0f12 (diff) | |
download | dokka-c2182b766a65619c859c0fc871a8a6334d66f199.tar.gz dokka-c2182b766a65619c859c0fc871a8a6334d66f199.tar.bz2 dokka-c2182b766a65619c859c0fc871a8a6334d66f199.zip |
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
Diffstat (limited to 'plugins/base')
-rw-r--r-- | plugins/base/build.gradle.kts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/plugins/base/build.gradle.kts b/plugins/base/build.gradle.kts index b3f002ef..3a4ee539 100644 --- a/plugins/base/build.gradle.kts +++ b/plugins/base/build.gradle.kts @@ -44,6 +44,10 @@ tasks { dependsOn(copyFrontend) } + sourcesJar { + dependsOn(processResources) + } + test { maxHeapSize = "4G" } |