Skip to content

Commit 7356f86

Browse files
authored
Merge pull request #1111 from timis1/JAVA-39735
JAVA-39735 Review https://www.baeldung.com/kotlin/kover
2 parents 35f7d4f + 6474258 commit 7356f86

File tree

1 file changed

+37
-10
lines changed

1 file changed

+37
-10
lines changed

kotlin-kover/pom.xml

+37-10
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
<dependency>
1313
<groupId>org.jetbrains.kotlin</groupId>
1414
<artifactId>kotlin-stdlib</artifactId>
15-
<version>2.0.20</version>
15+
<version>${kotlin-stdlib.version}</version>
1616
</dependency>
1717
<dependency>
1818
<groupId>org.junit.jupiter</groupId>
1919
<artifactId>junit-jupiter-engine</artifactId>
20-
<version>5.9.2</version>
20+
<version>${junit-jupiter-engine.version}</version>
2121
<scope>test</scope>
2222
</dependency>
2323
</dependencies>
@@ -29,7 +29,7 @@
2929
<plugin>
3030
<groupId>org.jetbrains.kotlinx</groupId>
3131
<artifactId>kover-maven-plugin</artifactId>
32-
<version>0.8.3</version>
32+
<version>${kover-maven-plugin.version}</version>
3333
<executions>
3434
<!-- instrument test tasks -->
3535
<execution>
@@ -134,7 +134,7 @@
134134
<plugin>
135135
<groupId>org.apache.maven.plugins</groupId>
136136
<artifactId>maven-jar-plugin</artifactId>
137-
<version>3.4.2</version>
137+
<version>${maven-jar-plugin.version}</version>
138138
<configuration>
139139
<archive>
140140
<manifest>
@@ -144,14 +144,41 @@
144144
</archive>
145145
</configuration>
146146
</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>
147172
</plugins>
148173
</build>
149174

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>
156183

157184
</project>

0 commit comments

Comments
 (0)