• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?xml version="1.0" encoding="UTF-8"?>
2<!--
3   Copyright (c) 2009, 2019 Mountainminds GmbH & Co. KG and Contributors
4   All rights reserved. This program and the accompanying materials
5   are made available under the terms of the Eclipse Public License v1.0
6   which accompanies this distribution, and is available at
7   http://www.eclipse.org/legal/epl-v10.html
8
9   Contributors:
10      Evgeny Mandrikov - initial API and implementation
11-->
12<project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
13  <modelVersion>4.0.0</modelVersion>
14
15  <parent>
16    <groupId>org.jacoco</groupId>
17    <artifactId>org.jacoco.core.test.validation</artifactId>
18    <version>0.8.4</version>
19    <relativePath>../org.jacoco.core.test.validation</relativePath>
20  </parent>
21
22  <artifactId>org.jacoco.core.test.validation.kotlin</artifactId>
23
24  <name>JaCoCo :: Test :: Core :: Validation Kotlin</name>
25
26  <properties>
27    <bytecode.version>6</bytecode.version>
28    <kotlin.version>1.3.31</kotlin.version>
29  </properties>
30
31  <dependencies>
32    <dependency>
33      <groupId>${project.groupId}</groupId>
34      <artifactId>org.jacoco.core.test</artifactId>
35      <version>${project.version}</version>
36    </dependency>
37    <dependency>
38      <groupId>org.jetbrains.kotlin</groupId>
39      <artifactId>kotlin-stdlib</artifactId>
40      <version>${kotlin.version}</version>
41    </dependency>
42    <dependency>
43      <groupId>org.jetbrains.kotlinx</groupId>
44      <artifactId>kotlinx-coroutines-core</artifactId>
45      <version>1.0.1</version>
46    </dependency>
47  </dependencies>
48
49  <build>
50    <plugins>
51      <plugin>
52        <groupId>org.jetbrains.kotlin</groupId>
53        <artifactId>kotlin-maven-plugin</artifactId>
54        <version>${kotlin.version}</version>
55        <executions>
56          <execution>
57            <id>compile</id>
58            <phase>process-sources</phase>
59            <goals>
60              <goal>compile</goal>
61            </goals>
62          </execution>
63        </executions>
64      </plugin>
65    </plugins>
66  </build>
67</project>
68