Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Jun 27, 2020. It is now read-only.

Commitde5b816

Browse files
committed
Update examples to kotlin-frontend-plugin 0.0.45 and kotlin 1.3.21
1 parent2493536 commitde5b816

File tree

11 files changed

+17
-22
lines changed

11 files changed

+17
-22
lines changed

‎README.md‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ First of all you have to apply plugin `org.jetbrains.kotlin.frontend` and setup
1313

1414
```gradle
1515
buildscript {
16-
ext.kotlin_version = '1.2.61'
16+
ext.kotlin_version = '1.3.21'
1717
1818
repositories {
1919
jcenter()
@@ -24,7 +24,7 @@ buildscript {
2424
2525
dependencies {
2626
classpath "org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
27-
classpath "org.jetbrains.kotlin:kotlin-frontend-plugin:0.0.44"
27+
classpath "org.jetbrains.kotlin:kotlin-frontend-plugin:0.0.45"
2828
}
2929
}
3030

‎examples/custom-webpack-config/build.gradle‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlin_version='1.3.10'
2+
ext.kotlin_version='1.3.21'
33

44
repositories {
55
jcenter()
@@ -8,7 +8,7 @@ buildscript {
88

99
dependencies {
1010
classpath"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
11-
classpath"org.jetbrains.kotlin:kotlin-frontend-plugin:0.0.31"
11+
classpath"org.jetbrains.kotlin:kotlin-frontend-plugin:0.0.45"
1212
}
1313
}
1414

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
rootProject.name='custom-webpack-config'

‎examples/frontend-only/build.gradle‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
buildscript {
2-
ext.kotlin_version='1.3.10'
2+
ext.kotlin_version='1.3.21'
33

44
repositories {
55
jcenter()
@@ -8,7 +8,7 @@ buildscript {
88

99
dependencies {
1010
classpath"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
11-
classpath"org.jetbrains.kotlin:kotlin-frontend-plugin:0.0.31"
11+
classpath"org.jetbrains.kotlin:kotlin-frontend-plugin:0.0.45"
1212
}
1313
}
1414

‎examples/full-stack-example/build.gradle‎

Lines changed: 3 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@ group 'org.jetbrains.kotlin.examples'
22
version'1.0-SNAPSHOT'
33

44
buildscript {
5-
ext.kotlin_version='1.3.10'
5+
ext.kotlin_version='1.3.21'
66

77
repositories {
88
jcenter()
99
maven { url'https://dl.bintray.com/kotlin/kotlin-eap' }
1010
}
1111
dependencies {
1212
classpath"org.jetbrains.kotlin:kotlin-gradle-plugin:$kotlin_version"
13-
classpath'org.jetbrains.kotlin:kotlin-frontend-plugin:0.0.31'
13+
classpath'org.jetbrains.kotlin:kotlin-frontend-plugin:0.0.45'
1414
}
1515
}
1616

@@ -24,10 +24,4 @@ subprojects { p ->
2424
repositories {
2525
jcenter()
2626
maven { url"https://dl.bintray.com/kotlin/ktor" }
27-
}
28-
29-
30-
taskwrapper(type:Wrapper) {
31-
gradleVersion='5.0'
32-
}
33-
27+
}

‎examples/full-stack-example/frontend/build.gradle‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
group='org.jetbrains.kotlin.examples'
22
version='0.0.1-SNAPSHOT'
33

4-
applyplugin:'org.jetbrains.kotlin.frontend'
54
applyplugin:'kotlin2js'
5+
applyplugin:'org.jetbrains.kotlin.frontend'
66

77
kotlinFrontend {
88
downloadNodeJsVersion='latest'

‎examples/new-mpp/build.gradle‎

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
plugins {
2-
id'kotlin-multiplatform' version'1.3.10'
3-
id'org.jetbrains.kotlin.frontend' version'0.0.44'
2+
id'kotlin-multiplatform' version'1.3.21'
3+
id'org.jetbrains.kotlin.frontend' version'0.0.45'
44
}
55

66
repositories {

‎gradle.properties‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
version=0.0.1-SNAPSHOT
22

3-
kotlin_version=1.3.10
3+
kotlin_version=1.3.21

‎kotlin-frontend/build.gradle‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ plugins {
22
id"java"
33
id"java-gradle-plugin"
44
id"maven-publish"
5-
id"org.jetbrains.kotlin.jvm" version"1.3.10"
5+
id"org.jetbrains.kotlin.jvm" version"1.3.21"
66
id"com.jfrog.bintray"
77
id'net.researchgate.release'
88
}

‎kotlin-frontend/src/test/kotlin/org/jetbrains/kotlin/gradle/frontend/NewMppTest.kt‎

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import kotlin.test.assertTrue
1616

1717
classNewMppTest {
1818
privateval gradleVersion:String="4.10.3"
19-
privateval kotlinVersion:String="1.3.10"
19+
privateval kotlinVersion:String="1.3.21"
2020

2121
privateval port=8098
2222
privateval builder=BuildScriptBuilder()

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp