File tree Expand file tree Collapse file tree 4 files changed +13
-3
lines changed
spring-cloud-function-context
spring-cloud-function-kotlin
spring-cloud-function-samples/function-sample-kotlin-web Expand file tree Collapse file tree 4 files changed +13
-3
lines changed Original file line number Diff line number Diff line change 21
21
<maven .compiler.source>${java.version} </maven .compiler.source>
22
22
<maven .compiler.target>${java.version} </maven .compiler.target>
23
23
<wrapper .version>1.0.31.RELEASE</wrapper .version>
24
+ <kotlin .version>2.1.10</kotlin .version>
25
+ <kotlinx .version>1.10.2</kotlinx .version>
24
26
<docs .main>spring-cloud-function</docs .main>
25
27
<maven-checkstyle-plugin .failsOnError>true</maven-checkstyle-plugin .failsOnError>
26
28
<maven-checkstyle-plugin .failsOnViolation>true
Original file line number Diff line number Diff line change 85
85
<dependency >
86
86
<groupId >org.jetbrains.kotlin</groupId >
87
87
<artifactId >kotlin-stdlib-jdk8</artifactId >
88
+ <version >${kotlin.version} </version >
88
89
<optional >true</optional >
89
90
</dependency >
90
91
<dependency >
91
92
<groupId >org.jetbrains.kotlin</groupId >
92
93
<artifactId >kotlin-reflect</artifactId >
94
+ <version >${kotlin.version} </version >
93
95
<optional >true</optional >
94
96
</dependency >
95
97
<dependency >
96
98
<groupId >org.jetbrains.kotlinx</groupId >
97
99
<artifactId >kotlinx-coroutines-reactor</artifactId >
100
+ <version >${kotlinx.version} </version >
98
101
<optional >true</optional >
99
102
</dependency >
100
103
156
159
<plugin >
157
160
<artifactId >kotlin-maven-plugin</artifactId >
158
161
<groupId >org.jetbrains.kotlin</groupId >
159
- <version >1.9.25 </version >
162
+ <version >2.1.10 </version >
160
163
<executions >
161
164
<execution >
162
165
<id >compile</id >
Original file line number Diff line number Diff line change 45
45
<dependency >
46
46
<groupId >org.jetbrains.kotlin</groupId >
47
47
<artifactId >kotlin-stdlib-jdk8</artifactId >
48
+ <version >${kotlin.version} </version >
48
49
</dependency >
49
50
<dependency >
50
51
<groupId >org.jetbrains.kotlin</groupId >
51
52
<artifactId >kotlin-reflect</artifactId >
53
+ <version >${kotlin.version} </version >
52
54
</dependency >
53
55
<dependency >
54
56
<groupId >org.jetbrains.kotlinx</groupId >
55
57
<artifactId >kotlinx-coroutines-reactor</artifactId >
58
+ <version >${kotlinx.version} </version >
56
59
</dependency >
57
60
<dependency >
58
61
<groupId >org.springframework.boot</groupId >
86
89
<plugin >
87
90
<artifactId >kotlin-maven-plugin</artifactId >
88
91
<groupId >org.jetbrains.kotlin</groupId >
89
- <version >1.9.25 </version >
92
+ <version >2.1.10 </version >
90
93
<executions >
91
94
<execution >
92
95
<id >test-compile</id >
Original file line number Diff line number Diff line change 23
23
<dependency >
24
24
<groupId >org.jetbrains.kotlin</groupId >
25
25
<artifactId >kotlin-reflect</artifactId >
26
+ <version >${kotlin.version} </version >
26
27
</dependency >
27
28
<dependency >
28
29
<groupId >org.jetbrains.kotlin</groupId >
29
30
<artifactId >kotlin-stdlib-jdk8</artifactId >
31
+ <version >${kotlin.version} </version >
30
32
</dependency >
31
33
<dependency >
32
34
<groupId >org.springframework.cloud</groupId >
67
69
<plugin >
68
70
<groupId >org.jetbrains.kotlin</groupId >
69
71
<artifactId >kotlin-maven-plugin</artifactId >
70
- <version >1.9.25 </version >
72
+ <version >${kotlin.version} </version >
71
73
<configuration >
72
74
<args >
73
75
<arg >-Xjsr305=strict</arg >
You can’t perform that action at this time.
0 commit comments