File tree Expand file tree Collapse file tree 10 files changed +40
-19
lines changed
jupyter-lib/common-dependencies/src/main/kotlin/org/jetbrains/kotlinx/jupyter/common
src/main/kotlin/org/jetbrains/kotlinx/jupyter/plugin Expand file tree Collapse file tree 10 files changed +40
-19
lines changed Original file line number Diff line number Diff line change
1
+ baseVersion =0.10.0
2
+
1
3
# kotlinVersion=1.5.255-SNAPSHOT
2
4
kotlinVersion =1.6.0-dev-903
3
5
stableKotlinVersion =1.5.20
4
- gradleKotlinVersion =1.4.31
5
- kotlinLanguageLevel =1.5
6
- stableKotlinLanguageLevel =1.5
7
- jvmTarget =1.8
8
6
9
- shadowJarVersion =7.0.0
10
- changelogPluginVersion =1.7.0
11
- kotlinxSerializationVersion =1.1.0
12
7
ktlintGradleVersion =10.0.0
13
8
ktlintVersion =0.40.0
14
9
publishPluginVersion =0.0.29-dev
15
- junitVersion =5.7.1
16
- slf4jVersion =1.7.30
17
- logbackVersion =1.2.3
18
- http4kVersion =4.9.8.0
19
- artifactsPath =build/artifacts
10
+ jupyterApiVersion =0.9.1-45
20
11
21
- baseVersion =0.10.0
12
+ kotlinLanguageLevel =1.5
13
+ stableKotlinLanguageLevel =1.5
14
+ jvmTarget =1.8
15
+
16
+ kotlin.jupyter.add.api =false
17
+ kotlin.jupyter.add.scanner =false
18
+
19
+ artifactsPath =build/artifacts
22
20
23
21
githubRepoUser =Kotlin
24
22
githubRepoName =kotlin-jupyter
@@ -33,7 +31,3 @@ org.gradle.jvmargs=-XX:MaxMetaspaceSize=1024m -Xmx2048m
33
31
34
32
# Turn off README check when running check task
35
33
skipReadmeCheck =false
36
-
37
- jupyterApiVersion =0.9.1-45
38
- kotlin.jupyter.add.api =false
39
- kotlin.jupyter.add.scanner =false
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change @@ -7,10 +7,12 @@ plugins {
7
7
8
8
repositories {
9
9
mavenCentral()
10
+ gradlePluginPortal()
10
11
}
11
12
12
13
dependencies {
13
- implementation(project(" :common-dependencies" ))
14
+ implementation(projects.commonDependencies)
15
+ api(libs.bundles.allGradlePlugins)
14
16
}
15
17
16
18
gradlePlugin {
Original file line number Diff line number Diff line change 1
1
@file:Suppress(" UnstableApiUsage" )
2
2
3
+ dependencyResolutionManagement {
4
+ versionCatalogs {
5
+ create(" libs" ) {
6
+ from(files(" ../gradle/libs.versions.toml" ))
7
+ }
8
+ }
9
+ }
10
+
3
11
pluginManagement {
4
12
fun findRootProperties (): java.util.Properties {
5
13
var fileName = " gradle.properties"
@@ -46,4 +54,9 @@ pluginManagement {
46
54
}
47
55
}
48
56
49
- include(" common-dependencies" )
57
+ subproject(" common-dependencies" , " ../jupyter-lib/" )
58
+
59
+ fun subproject (name : String , parentPath : String ) {
60
+ include(name)
61
+ project(" :$name " ).projectDir = file(" $parentPath$name " ).absoluteFile
62
+ }
Original file line number Diff line number Diff line change @@ -16,6 +16,18 @@ import org.jetbrains.kotlinx.jupyter.build.prepareReadmeTasks
16
16
17
17
class KotlinJupyterGradlePlugin : Plugin <Project > {
18
18
override fun apply (project : Project ) {
19
+
20
+ with (project.plugins) {
21
+ apply (" org.jetbrains.kotlin.jvm" )
22
+ apply (" com.github.johnrengelman.shadow" )
23
+ apply (" org.jetbrains.kotlin.plugin.serialization" )
24
+ apply (" org.jlleitschuh.gradle.ktlint" )
25
+ apply (" org.jetbrains.kotlinx.jupyter.dependencies" )
26
+ apply (" ru.ileasile.kotlin.publisher" )
27
+ apply (" ru.ileasile.kotlin.doc" )
28
+ apply (" org.hildan.github.changelog" )
29
+ }
30
+
19
31
with (ProjectWithOptionsImpl (project, project.options())) {
20
32
/* ***** Helper tasks ******/
21
33
prepareReadmeTasks()
You can’t perform that action at this time.
0 commit comments