12
12
<dependency >
13
13
<groupId >org.jetbrains.kotlin</groupId >
14
14
<artifactId >kotlin-stdlib</artifactId >
15
- <version >2.0.20 </version >
15
+ <version >${kotlin-stdlib.version} </version >
16
16
</dependency >
17
17
<dependency >
18
18
<groupId >org.junit.jupiter</groupId >
19
19
<artifactId >junit-jupiter-engine</artifactId >
20
- <version >5.9.2 </version >
20
+ <version >${junit-jupiter-engine.version} </version >
21
21
<scope >test</scope >
22
22
</dependency >
23
23
</dependencies >
29
29
<plugin >
30
30
<groupId >org.jetbrains.kotlinx</groupId >
31
31
<artifactId >kover-maven-plugin</artifactId >
32
- <version >0.8.3 </version >
32
+ <version >${kover-maven-plugin.version} </version >
33
33
<executions >
34
34
<!-- instrument test tasks -->
35
35
<execution >
134
134
<plugin >
135
135
<groupId >org.apache.maven.plugins</groupId >
136
136
<artifactId >maven-jar-plugin</artifactId >
137
- <version >3.4.2 </version >
137
+ <version >${maven-jar-plugin.version} </version >
138
138
<configuration >
139
139
<archive >
140
140
<manifest >
144
144
</archive >
145
145
</configuration >
146
146
</plugin >
147
+ <plugin >
148
+ <groupId >org.jetbrains.kotlin</groupId >
149
+ <artifactId >kotlin-maven-plugin</artifactId >
150
+ <version >${kotlin-maven-plugin.version} </version >
151
+ <executions >
152
+ <execution >
153
+ <id >compile-kotlin</id >
154
+ <phase >compile</phase >
155
+ <goals >
156
+ <goal >compile</goal >
157
+ </goals >
158
+ </execution >
159
+ <execution >
160
+ <id >test-compile</id >
161
+ <phase >test-compile</phase >
162
+ <goals >
163
+ <goal >test-compile</goal >
164
+ </goals >
165
+ </execution >
166
+ </executions >
167
+ </plugin >
168
+ <plugin >
169
+ <artifactId >maven-surefire-plugin</artifactId >
170
+ <version >${maven-surfire-plugin.version} </version >
171
+ </plugin >
147
172
</plugins >
148
173
</build >
149
174
150
- <repositories >
151
- <repository >
152
- <id >central</id >
153
- <url >https://repo.maven.apache.org/maven2</url >
154
- </repository >
155
- </repositories >
175
+ <properties >
176
+ <kotlin-stdlib .version>2.0.20</kotlin-stdlib .version>
177
+ <junit-jupiter-engine .version>5.9.2</junit-jupiter-engine .version>
178
+ <kover-maven-plugin .version>0.8.3</kover-maven-plugin .version>
179
+ <maven-jar-plugin .version>3.2.0</maven-jar-plugin .version>
180
+ <kotlin-maven-plugin .version>2.0.20</kotlin-maven-plugin .version>
181
+ <maven-surfire-plugin .version>3.3.0</maven-surfire-plugin .version>
182
+ </properties >
156
183
157
184
</project >
0 commit comments