blob: 8e080374fd2163db409458ee5805aefb2045220c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
|
import org.jetbrains.DokkaPublicationBuilder.Component.Shadow
import org.jetbrains.registerDokkaArtifactPublication
plugins {
id("com.github.johnrengelman.shadow")
`maven-publish`
id("com.jfrog.bintray")
}
repositories {
maven(url = "https://www.jetbrains.com/intellij-repository/snapshots")
maven(url = "https://www.jetbrains.com/intellij-repository/releases")
maven(url = "https://kotlin.bintray.com/kotlin-plugin")
}
val intellijCore: Configuration by configurations.creating
fun intellijCoreAnalysis() = zipTree(intellijCore.singleFile).matching {
include("intellij-core-analysis.jar")
}
dependencies {
val kotlin_plugin_version: String by project
api("org.jetbrains.kotlin:ide-common-ij193:$kotlin_plugin_version")
api("org.jetbrains.kotlin:kotlin-plugin-ij193:$kotlin_plugin_version") {
//TODO: parametrize ij version after 1.3.70
isTransitive = false
}
val idea_version: String by project
intellijCore("com.jetbrains.intellij.idea:intellij-core:$idea_version")
implementation(intellijCoreAnalysis())
}
tasks {
shadowJar {
val dokka_version: String by project
archiveFileName.set("dokka-kotlin-analysis-intellij-$dokka_version.jar")
archiveClassifier.set("")
exclude("colorScheme/**")
exclude("fileTemplates/**")
exclude("inspectionDescriptions/**")
exclude("intentionDescriptions/**")
exclude("tips/**")
exclude("messages/**")
exclude("src/**")
exclude("**/*.kotlin_metadata")
exclude("**/*.kotlin_builtins")
}
}
registerDokkaArtifactPublication("kotlinAnalysisIntelliJ") {
artifactId = "kotlin-analysis-intellij"
component = Shadow
}
|