Skip to content

Commit a54436e

Browse files
author
Ali shirzad
committed
upgrade to latest version of kotlin 1.7.0
1 parent 2f4cc41 commit a54436e

File tree

6 files changed

+13
-8
lines changed

6 files changed

+13
-8
lines changed

backend/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
group = "com.techprd"
6-
version = "1.5.10"
6+
version = "1.7.0"
77

88
repositories {
99
mavenCentral()

build.gradle.kts

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
plugins {
2-
id("org.jetbrains.kotlin.js") version "1.5.10"
2+
id("org.jetbrains.kotlin.js") version "1.7.0"
33
}
44

55
group = "com.techprd"
6-
version = "1.0-SNAPSHOT"
6+
version = "1.7.0"
77

88
repositories {
99
mavenCentral()
@@ -15,3 +15,8 @@ kotlin {
1515
nodejs()
1616
}
1717
}
18+
19+
rootProject.plugins.withType<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootPlugin> {
20+
rootProject.the<org.jetbrains.kotlin.gradle.targets.js.nodejs.NodeJsRootExtension>().versions.webpackCli.version =
21+
"4.10.0"
22+
}

common/build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ plugins {
33
}
44

55
group = "com.techprd"
6-
version = "1.5.10"
6+
version = "1.7.0"
77

88
repositories {
99
mavenCentral()

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
kotlin.code.style=official
1+
kotlin.code.style=official
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
distributionBase=GRADLE_USER_HOME
22
distributionPath=wrapper/dists
3-
distributionUrl=https\://services.gradle.org/distributions/gradle-6.8-bin.zip
3+
distributionUrl=https\://services.gradle.org/distributions/gradle-7.4.2-bin.zip
44
zipStoreBase=GRADLE_USER_HOME
55
zipStorePath=wrapper/dists

webapp/build.gradle.kts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ plugins {
55
}
66

77
group = "com.techprd"
8-
version = "1.5.10"
8+
version = "1.7.0"
99

1010
repositories {
1111
mavenCentral()
@@ -15,7 +15,7 @@ repositories {
1515

1616
dependencies {
1717
implementation(kotlin("stdlib-js"))
18-
implementation("org.jetbrains.kotlinx:kotlinx-html-js:0.7.2")
18+
implementation("org.jetbrains.kotlinx:kotlinx-html-js:0.7.5")
1919
implementation(project(":common"))
2020
}
2121

0 commit comments

Comments
 (0)