diff options
author | Ignat Beresnev <ignat.beresnev@jetbrains.com> | 2023-07-05 10:04:55 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-05 10:04:55 +0200 |
commit | 9559158bfeeb274e9ccf1b4563f1b23b42afc493 (patch) | |
tree | 3ece0887623cfe2b7148af23001867a1dd5e6597 /settings.gradle.kts | |
parent | cbd9733d3dd2f52992e98e7cebd072091a572529 (diff) | |
download | dokka-9559158bfeeb274e9ccf1b4563f1b23b42afc493.tar.gz dokka-9559158bfeeb274e9ccf1b4563f1b23b42afc493.tar.bz2 dokka-9559158bfeeb274e9ccf1b4563f1b23b42afc493.zip |
Decompose Kotlin/Java analysis (#3034)
* Extract analysis into separate modules
Diffstat (limited to 'settings.gradle.kts')
-rw-r--r-- | settings.gradle.kts | 25 |
1 files changed, 17 insertions, 8 deletions
diff --git a/settings.gradle.kts b/settings.gradle.kts index a1229458..6e67f58c 100644 --- a/settings.gradle.kts +++ b/settings.gradle.kts @@ -12,15 +12,16 @@ pluginManagement { } dependencyResolutionManagement { - - // subproject :kotlin-analysis:intellij-dependency requires specific repositories that should not be used in - // the other subprojects, so use PREFER_PROJECT to allow subprojects to override the repositories defined here. - repositoriesMode.set(RepositoriesMode.PREFER_PROJECT) - repositories { mavenCentral() google() + maven("https://cache-redirector.jetbrains.com/maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-ide") + maven("https://cache-redirector.jetbrains.com/maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-ide-plugin-dependencies") + + maven("https://cache-redirector.jetbrains.com/intellij-repository/releases") + maven("https://cache-redirector.jetbrains.com/intellij-third-party-dependencies") + // Declare the Node.js & Yarn download repositories // Required by Gradle Node plugin: https://github.com/node-gradle/gradle-node-plugin/blob/3.5.1/docs/faq.md#is-this-plugin-compatible-with-centralized-repositories-declaration exclusiveContent { @@ -58,9 +59,17 @@ include( ":core:test-api", ":core:content-matcher-test-utils", - ":kotlin-analysis", - ":kotlin-analysis:intellij-dependency", - ":kotlin-analysis:compiler-dependency", + ":subprojects", + + ":subprojects:analysis-java-psi", + ":subprojects:analysis-kotlin-api", + ":subprojects:analysis-kotlin-descriptors", + ":subprojects:analysis-kotlin-descriptors:compiler", + ":subprojects:analysis-kotlin-descriptors:ide", + ":subprojects:analysis-kotlin-symbols", + ":subprojects:analysis-kotlin-symbols:compiler", + ":subprojects:analysis-kotlin-symbols:ide", + ":subprojects:analysis-markdown-jb", ":runners:gradle-plugin", ":runners:cli", |