d16b169fb2
Added as well benchmarks for configuration time only checks.
62 lines
1.7 KiB
Diff
62 lines
1.7 KiB
Diff
diff --git a/buildSrc/build.gradle.kts b/buildSrc/build.gradle.kts
|
|
index db904c8841..ef155edc8e 100644
|
|
--- a/buildSrc/build.gradle.kts
|
|
+++ b/buildSrc/build.gradle.kts
|
|
@@ -3,12 +3,13 @@ plugins {
|
|
}
|
|
|
|
repositories {
|
|
+ mavenLocal()
|
|
mavenCentral()
|
|
gradlePluginPortal()
|
|
}
|
|
|
|
dependencies {
|
|
- implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:1.7.20")
|
|
+ implementation("org.jetbrains.kotlin:kotlin-gradle-plugin:<kotlin_version>")
|
|
implementation("de.marcphilipp.gradle:nexus-publish-plugin:0.4.0")
|
|
implementation("org.jetbrains.dokka:dokka-gradle-plugin:1.7.10") {
|
|
exclude("org.jetbrains.kotlin","kotlin-stdlib-jdk8")
|
|
diff --git a/buildSrc/src/main/kotlin/Shared.kt b/buildSrc/src/main/kotlin/Shared.kt
|
|
index cb90de74ab..440e2ce91a 100644
|
|
--- a/buildSrc/src/main/kotlin/Shared.kt
|
|
+++ b/buildSrc/src/main/kotlin/Shared.kt
|
|
@@ -15,9 +15,9 @@ import org.jetbrains.kotlin.gradle.targets.js.dsl.KotlinJsTargetDsl
|
|
|
|
fun Project.repositories() {
|
|
repositories {
|
|
+ mavenLocal()
|
|
mavenCentral()
|
|
jcenter()
|
|
- mavenLocal()
|
|
}
|
|
}
|
|
|
|
diff --git a/gradle.properties b/gradle.properties
|
|
index 5cb5298782..3fb47f8cdc 100644
|
|
--- a/gradle.properties
|
|
+++ b/gradle.properties
|
|
@@ -1,7 +1,7 @@
|
|
group=io.kvision
|
|
versionNumber=5.16.1
|
|
|
|
-systemProp.kotlinVersion=1.7.20
|
|
+systemProp.kotlinVersion=<kotlin_version>
|
|
javaVersion=1.8
|
|
coroutinesVersion=1.6.4
|
|
serializationVersion=1.4.0
|
|
diff --git a/settings.gradle.kts b/settings.gradle.kts
|
|
index f85a2f087e..a122b6fd5e 100644
|
|
--- a/settings.gradle.kts
|
|
+++ b/settings.gradle.kts
|
|
@@ -1,8 +1,8 @@
|
|
pluginManagement {
|
|
repositories {
|
|
+ mavenLocal()
|
|
gradlePluginPortal()
|
|
mavenCentral()
|
|
- mavenLocal()
|
|
}
|
|
}
|
|
rootProject.name = "kvision"
|