aboutsummaryrefslogtreecommitdiff
path: root/gradle
AgeCommit message (Collapse)Author
2023-11-15[K2] Update version of Kotlin Analysis API (#3337)Vadim Mishenev
2023-11-10Restructure the project to utilize included builds (#3174)Ignat Beresnev
* 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 <whyoleg@gmail.com>
2023-11-06Update Kotlin to 1.9.20 (#3319)Vadim Mishenev
* Update compiler and KGP to 1.9.20 * Update integration tests
2023-11-01Update Kotlin compiler and KGP to 1.9.20-RC2 (#3262)Vadim Mishenev
* Update Kotlin compiler to 1.9.20-RC2 The current changes are related to https://github.com/JetBrains/kotlin/commit/d797505f06d640b666829bbfb4b7d7c67f812026 * Update KGP to 1.9.20-RC2 * Replace common stdlib in unit tests * Update Kotlin version in integration tests * Fix `Multiplatform0GradleIntegrationTest` * Turn WasmGradleIntegrationTest off for Kotlin 1.9.20-RC2
2023-10-31Update org.jetbrains.markdown from 0.3.1 to 0.5.2 (#3231)Ignat Beresnev
2023-10-25[K2] Reorganize project model for MPP (#3236)Vadim Mishenev
* Reorganize project model for MPP We map Dokka's source set directly to a source module of Analysis API inside one Analysis Standalone session. Analysis API session is created in src/main/kotlin/org/jetbrains/dokka/analysis/kotlin/symbols/plugin/KotlinAnalysis.kt (see fun createAnalysisSession) Before the PR, one Dokka's source set corresponded to one Standalone API session with one source module that has source roots from dependent source sets. * Add 'caffeine' dependency from Analysis API * Fix sample provider * Fix tests * Enable tests and update the version of Analysis API. The PR allows the enabling of some tests annotated with OnlyDescriptorsMPP. Also, tests with OnlyDescriptorsMPP that have unresolved common symbols are fixed by the new version of Analysis API.
2023-10-18Bump dependencies without visible API changes (#3204)Ignat Beresnev
2023-10-17Bump korte aka korlibs-template to 4.0.10 (#3205)Ignat Beresnev
2023-10-16Update Dokka's references to 1.9.10 (#3210)Ignat Beresnev
2023-10-16Bump kotlinx.html to 0.9.1 (#3206)Ignat Beresnev
2023-10-11[K2] Migrate to new standalone API (#3201)Vadim Mishenev
* Migrate K2-Based dokka to use the new standalone mode API see https://youtrack.jetbrains.com/issue/KT-60884 * Do not use copy-n-pasted code from Analysis API in K2-Based Dokka see https://youtrack.jetbrains.com/issue/KT-60884 * Remove copy-n-pasted API from Analysis API in K2-Based Dokka as it's now unused see https://youtrack.jetbrains.com/issue/KT-60884 * Update version Analysis API to 1.9.30-dev-3330 --------- Co-authored-by: Ilya Kirillov <ilya.kirillov@jetbrains.com>
2023-10-09Use compileDependencyFiles for getting compilation dependencies (#3147)Anton Lakotko
Co-authored-by: vmishenev <vad-mishenev@yandex.ru>
2023-09-04Update Kotlin to 1.9.10 (#3158)Vadim Mishenev
2023-09-01Update Dokka's references to 1.9.0 (#3154)Ignat Beresnev
2023-08-31Update copyright (#3149)Ignat Beresnev
* Add the default copyright profile and enable IDEA project settings * Add the license notice file
2023-08-30Migrate to JUnit 5 and unify used test API (#3138)Ignat Beresnev
2023-08-28 Support Dokka K2 analysis (#3094)Vadim Mishenev
Dokka has its own documentable model to represent analyzed code. The analysis is performed by a compiler frontend. In K1 the compiler frontend has descriptors that use the underlying Binding Context (global shared stateful structure). Dokka just maps descriptors to Documentable by DefaultDescriptorToDocumentableTranslator. K2 compiler has FIR tree, which means “Frontend Intermediate Representation”, instead of Binding Context. But we do not use FIR in Dokka directly, since it is too low-level for analysis. The Kotlin compiler provides high-level Analysis API for this case. The API is used by KSP too. Analysis API represent elements of FIR (declarations, parameters and so on) as Symbols. For more details see KtSymbolByFirBuilder, KtSymbol. For Dokka symbol is the replacement of descriptor in K2. Also, to set up the environment of project analysis in K1 we use idea dependencies (or copy-past from there). In K2 for these aims, there is a Standalone mode for Analysis API.
2023-07-21Update Kotlin to 1.9.0 (#3074)Vadim Mishenev
* Update Kotlin Gradle Plugin to 1.9.0 * Update Android Gradle Plugin to 4.2.2 * Introduce convention plugin for Gradle runner https://github.com/gradle/gradle/issues/8301 * Fix unit test `common, jvm and macos source sets with kotlin multiplatform` * Update compiler to 1.9.0 * Update integration test * Add empty target for WASM integration test to avoid single target project See https://github.com/Kotlin/dokka/issues/3038 * Remove unused `plugins.shadow` from toml
2023-07-18Update Kotlin compiler to 1.8.20 (#3062)Vadim Mishenev
2023-07-17Get rif of IDE plugin dependencies (#3073)Vadim Mishenev
* Get rif of IDE plugin dependencies Everything in this commit has been copy-pasted from IDE plugin and marked as internal
2023-07-05Decompose Kotlin/Java analysis (#3034)Ignat Beresnev
* Extract analysis into separate modules
2023-06-06Update Dokka's references to 1.8.20 (#3028)Ignat Beresnev
2023-06-01Update Dokka to 1.8.10IgnatBeresnev
2023-05-26Improve copying base-frontend files between subprojects (#2970)Adam
2023-05-17Update KGP to 1.8.20 (#2989)Vadim Mishenev
* Update KGP to 1.8.20 * Update AGP to be compatible with KGP * Replace `AndroidSourceSet` * Dump API * Update integration tests * Update GH actions tests * Refactor Gradle Runner * Fix `TYPE_MISMATCH_WARNING_FOR_INCORRECT_CAPTURE_APPROXIMATION` * Suppress source sets without compilations Dokka suppresses source sets that do no have compilation since such configuration is invalid, it reports a warning or an error * Introduce `dependsOn` for a new `com.android.build.api.dsl.AndroidSourceSet` * API dump * Add comment * Suppress remaining `TYPE_MISMATCH_WARNING_FOR_INCORRECT_CAPTURE_APPROXIMATION` * Add comment --------- Co-authored-by: Ignat Beresnev <ignat.beresnev@jetbrains.com>
2023-04-25Reorder dependency versions for update convenience (#2968)Ignat Beresnev
* Reorder dependency versions for update convenience * Try to add more consistency to naming
2023-03-17Introduce Gradle Version Catalog with type-safe project dependencies (#2884)aSemy
2023-01-30Bump Gradle to 7.6 (#2756)Goooler
2022-08-24Bump Gradle to 7.5.1 (#2618)Goooler
2021-11-13Bump gradle to 7.3 (#2224)Goooler
2021-09-21Bump gradle to 7.2 (#2144)Goooler
* Bump gradle to 7.2 * Bump gradle to 7.2 under examples * Add .gitattributes rule of eol
2021-05-21Bump Gradle to 7.0 (#1926)Kamil Doległo
2021-02-01Update gradle to 6.8.1 (#1716)Marcin Aman
2020-12-31Bump Gradle version to 6.7.1 (#1684)Masato Nakamura
Bump Gradle version to 6.7.1
2020-08-14Update Gradle version to 6.6sebastian.sellmair
2020-08-14Simplify Dokka Gradle Pluginsebastian.sellmair
2020-07-06Manually disable bintray tasks in root project ↵sebastian.sellmair
(https://github.com/bintray/gradle-bintray-plugin/issues/267)
2020-06-10Update Gradle to 6.5Marcin Aman
2020-02-12kotlin-as-java pluginSzymon Świstun
2020-01-31Bump Gradle version, migrate to Kotlin DSL, refactor publishingKamil Doległo
2019-10-10Move gradle-integration-tests to new moduleKamil Doległo
2019-10-10Bump Gradle to 4.10.3Kamil Doległo
2018-09-11gradle version re-fixed to 4.10Eugene Petrenko
2018-09-11gradle 4.10 + fix to the workaround around shadow pluginEugene Petrenko
2018-01-31Fix dependencies in Gradle 4.5Simon Ogorodnik
2017-11-02Ensure build directory exists before generating POM into it (#236)Eric Wendelin
This declares the inputs and outputs for the maven-plugin generatePom task, which improves incremental build support and as of Gradle 4.3 (updated) automatically creates directory paths for declared outputs. Issue: #235
2017-10-24Update Gradle to 4.2.1Simon Ogorodnik
2017-10-08Update Gradle Version to 4.2Simon Ogorodnik
2017-06-16Update gradle to 4.0Simon Ogorodnik
2016-11-10Fixed android-gradle-plugin crash with android gradle build tools 2.2.0. ↵Simon Ogorodnik
Updated gradle wrapper to 2.14.1 to compile with gradle build tools 2.2.0