aboutsummaryrefslogtreecommitdiff
path: root/coreDependencies
diff options
context:
space:
mode:
authorKamil Doległo <kamilok1965@interia.pl>2020-01-24 14:41:33 +0100
committerPaweł Marks <Kordyjan@users.noreply.github.com>2020-01-31 15:27:26 +0100
commit0073c4c547dafaae5d465d4c410a52fd7fdc818d (patch)
tree3d98a7d1bebeb3ffaf269f1c41396d1fb3c3fea6 /coreDependencies
parent07e6778ab70122784e0c239c70838adbec66042d (diff)
downloaddokka-0073c4c547dafaae5d465d4c410a52fd7fdc818d.tar.gz
dokka-0073c4c547dafaae5d465d4c410a52fd7fdc818d.tar.bz2
dokka-0073c4c547dafaae5d465d4c410a52fd7fdc818d.zip
Cherry-pick 'analysis_rewrite_1.3.61'
Diffstat (limited to 'coreDependencies')
-rw-r--r--coreDependencies/build.gradle23
1 files changed, 1 insertions, 22 deletions
diff --git a/coreDependencies/build.gradle b/coreDependencies/build.gradle
index 4677309c..2b166a93 100644
--- a/coreDependencies/build.gradle
+++ b/coreDependencies/build.gradle
@@ -1,36 +1,15 @@
-repositories {
- ivy(ivyrepo)
-}
-
-configurations {
- kotlin_plugin_full
-}
-
-dependencies {
- final String ijVersion = "20" + ideaVersion.take(2) + "." + ideaVersion[2]
- kotlin_plugin_full "teamcity:kotlin-plugin-$bundled_kotlin_compiler_version-IJ$ijVersion-1:$bundled_kotlin_compiler_version@zip"
-}
-
def intellijCoreAnalysis() {
return zipTree(project(":").configurations.intellijCore.singleFile).matching ({
include("intellij-core-analysis.jar")
})
}
-def kotlinPluginDependency() {
-
- return zipTree(project.configurations.kotlin_plugin_full.singleFile).matching({
- include("Kotlin/lib/kotlin-plugin.jar")
- })
-}
-
apply plugin: 'java'
apply plugin: 'com.github.johnrengelman.shadow'
dependencies {
- compile kotlinPluginDependency()
compile intellijCoreAnalysis()
- compile "teamcity:kotlin-ide-common:$bundled_kotlin_compiler_version"
+ compile "org.jetbrains.kotlin:kotlin-plugin-ij193:$kotlin_plugin_version" //TODO: parametrize ij version after 1.3.70
}
shadowJar {