blob: 7df4f676e4293c6906db2b395d42399e41425081 (
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
57
58
59
60
|
import org.jetbrains.DokkaPublicationBuilder.Component.Shadow
import org.jetbrains.registerDokkaArtifactPublication
plugins {
id("com.github.johnrengelman.shadow")
`maven-publish`
id("com.jfrog.bintray")
}
repositories {
mavenCentral()
maven(url = "https://www.jetbrains.com/intellij-repository/snapshots")
maven(url = "https://www.jetbrains.com/intellij-repository/releases")
maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-ide")
maven("https://maven.pkg.jetbrains.space/kotlin/p/kotlin/kotlin-ide-plugin-dependencies")
maven("https://cache-redirector.jetbrains.com/intellij-dependencies")
}
val intellijCore: Configuration by configurations.creating
fun intellijCoreAnalysis() = zipTree(intellijCore.singleFile).matching {
include("intellij-core-analysis-deprecated.jar")
}
dependencies {
val kotlin_plugin_version: String by project
api("org.jetbrains.kotlin:common:$kotlin_plugin_version")
api("org.jetbrains.kotlin:idea:$kotlin_plugin_version") {
isTransitive = false
}
api("org.jetbrains.kotlin:core:$kotlin_plugin_version")
api("org.jetbrains.kotlin:native:$kotlin_plugin_version")
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
}
|