-
Notifications
You must be signed in to change notification settings - Fork 106
/
Copy pathsettings.gradle.kts
79 lines (67 loc) · 2.63 KB
/
settings.gradle.kts
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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
@file:Suppress("UnstableApiUsage")
pluginManagement {
val kotlinVersion: String by settings
val stableKotlinVersion: String by settings
val shadowJarVersion: String by settings
val ktlintGradleVersion: String by settings
val jupyterApiVersion: String by settings
val publishPluginVersion: String by settings
repositories {
mavenLocal()
mavenCentral()
gradlePluginPortal()
class TeamcitySettings(
val url: String,
val projectId: String
)
val teamcityRepos = listOf(
TeamcitySettings("https://teamcity.jetbrains.com", "Kotlin_KotlinPublic_Artifacts"),
TeamcitySettings("https://buildserver.labs.intellij.net", "Kotlin_KotlinDev_Artifacts")
)
for (teamcity in teamcityRepos) {
maven("${teamcity.url}/guestAuth/app/rest/builds/buildType:(id:${teamcity.projectId}),number:$kotlinVersion,branch:default:any/artifacts/content/maven")
}
// Used for TeamCity build
val m2LocalPath = File(".m2/repository")
if (m2LocalPath.exists()) {
maven(m2LocalPath.toURI())
}
}
resolutionStrategy {
eachPlugin {
when (requested.id.id) {
"com.github.johnrengelman.shadow" -> useModule("com.github.jengelman.gradle.plugins:shadow:$shadowJarVersion")
"org.jlleitschuh.gradle.ktlint" -> useModule("org.jlleitschuh.gradle:ktlint-gradle:$ktlintGradleVersion")
}
}
}
plugins {
kotlin("jvm") version stableKotlinVersion
kotlin("plugin.serialization") version stableKotlinVersion
kotlin("jupyter.api") version jupyterApiVersion
id("com.github.johnrengelman.shadow") version shadowJarVersion
id("org.jlleitschuh.gradle.ktlint") version ktlintGradleVersion
id("org.jetbrains.kotlinx.jupyter.dependencies")
id("ru.ileasile.kotlin.publisher") version publishPluginVersion
id("ru.ileasile.kotlin.doc") version publishPluginVersion
}
}
gradle.projectsLoaded {
allprojects {
repositories.addAll(pluginManagement.repositories)
}
}
val pluginProject = "kotlin-jupyter-plugin"
includeBuild(pluginProject)
libSubproject("common-dependencies", "$pluginProject/")
libSubproject("lib")
libSubproject("api")
libSubproject("api-annotations")
libSubproject("kotlin-jupyter-api-gradle-plugin")
libSubproject("shared-compiler")
libSubproject("lib-ext")
libSubproject("getting-started", "api-examples/")
fun libSubproject(name: String, parentPath: String = "jupyter-lib/") {
include(name)
project(":$name").projectDir = file("$parentPath$name")
}