File tree 5 files changed +30
-17
lines changed
src/main/kotlin/org/jetbrains/spark/api
5 files changed +30
-17
lines changed Original file line number Diff line number Diff line change 4
4
<parent >
5
5
<groupId >org.jetbrains.kotlin.spark</groupId >
6
6
<artifactId >kotlin-spark-api-parent</artifactId >
7
- <version >0.3.2 </version >
7
+ <version >1.0.0-preview1 </version >
8
8
</parent >
9
9
<artifactId >core</artifactId >
10
10
<name >Kotlin Spark API: Scala core</name >
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >org.jetbrains.kotlin.spark</groupId >
8
8
<artifactId >kotlin-spark-api-parent</artifactId >
9
- <version >0.3.2 </version >
9
+ <version >1.0.0-preview1 </version >
10
10
</parent >
11
11
12
12
<groupId >org.jetbrains.kotlin.spark.examples</groupId >
17
17
18
18
<properties >
19
19
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
20
- <kotlin .version>1.3.72</kotlin .version>
21
20
<kotlin .code.style>official</kotlin .code.style>
22
- <junit .version>4.12</junit .version>
23
21
</properties >
24
22
25
23
<dependencies >
Original file line number Diff line number Diff line change 6
6
<parent >
7
7
<groupId >org.jetbrains.kotlin.spark</groupId >
8
8
<artifactId >kotlin-spark-api-parent</artifactId >
9
- <version >0.3.2 </version >
9
+ <version >1.0.0-preview1 </version >
10
10
</parent >
11
11
12
12
<artifactId >kotlin-spark-api</artifactId >
16
16
17
17
<properties >
18
18
<project .build.sourceEncoding>UTF-8</project .build.sourceEncoding>
19
- <kotlin .version>1.3.72</kotlin .version>
20
19
<kotlin .code.style>official</kotlin .code.style>
21
- <dokka .version>0.10.1 </dokka .version>
22
- <kotest .version>4.1.3 </kotest .version>
20
+ <dokka .version>1.4.0-rc </dokka .version>
21
+ <kotest .version>4.2.0.RC2 </kotest .version>
23
22
</properties >
24
23
25
24
<dependencies >
49
48
<version >${kotest.version} </version >
50
49
<scope >test</scope >
51
50
</dependency >
52
- <dependency >
53
- <groupId >io.kotest</groupId >
54
- <artifactId >kotest-runner-console-jvm</artifactId >
55
- <version >${kotest.version} </version >
56
- <scope >test</scope >
57
- </dependency >
58
51
<dependency >
59
52
<groupId >io.kotest</groupId >
60
53
<artifactId >kotest-extensions-allure-jvm</artifactId >
128
121
<plugin >
129
122
<groupId >org.jetbrains.dokka</groupId >
130
123
<artifactId >dokka-maven-plugin</artifactId >
131
- <version >1.4.0-rc </version >
124
+ <version >${dokka.version} </version >
132
125
<configuration >
133
126
<jdkVersion >8</jdkVersion >
134
127
</configuration >
Original file line number Diff line number Diff line change @@ -38,7 +38,6 @@ import java.time.LocalDate
38
38
import java.util.concurrent.ConcurrentHashMap
39
39
import kotlin.reflect.KClass
40
40
import kotlin.reflect.KType
41
- import kotlin.reflect.full.declaredMemberProperties
42
41
import kotlin.reflect.full.findAnnotation
43
42
import kotlin.reflect.full.isSubclassOf
44
43
import kotlin.reflect.full.primaryConstructor
Original file line number Diff line number Diff line change 3
3
<modelVersion >4.0.0</modelVersion >
4
4
<groupId >org.jetbrains.kotlin.spark</groupId >
5
5
<artifactId >kotlin-spark-api-parent</artifactId >
6
- <version >0.3.2 </version >
6
+ <version >1.0.0-preview1 </version >
7
7
<packaging >pom</packaging >
8
8
<name >kotlin-spark-api-parent</name >
9
+ <properties >
10
+ <kotlin .version>1.4.0</kotlin .version>
11
+ </properties >
9
12
<modules >
10
13
<module >kotlin-spark-api</module >
11
14
<module >examples</module >
60
63
</execution >
61
64
</executions >
62
65
</plugin >
66
+ <plugin >
67
+ <groupId >org.apache.maven.plugins</groupId >
68
+ <artifactId >maven-enforcer-plugin</artifactId >
69
+ <version >3.0.0-M3</version >
70
+ <executions >
71
+ <execution >
72
+ <id >enforce-maven</id >
73
+ <goals >
74
+ <goal >enforce</goal >
75
+ </goals >
76
+ <configuration >
77
+ <rules >
78
+ <requireMavenVersion >
79
+ <version >3.5.4</version >
80
+ </requireMavenVersion >
81
+ </rules >
82
+ </configuration >
83
+ </execution >
84
+ </executions >
85
+ </plugin >
63
86
</plugins >
64
87
</build >
65
88
<url >http://maven.apache.org</url >
You can’t perform that action at this time.
0 commit comments