1<?xml version="1.0" encoding="UTF-8"?> 2<!-- 3 Copyright (c) 2009, 2021 Mountainminds GmbH & Co. KG and Contributors 4 This program and the accompanying materials are made available under 5 the terms of the Eclipse Public License 2.0 which is available at 6 http://www.eclipse.org/legal/epl-2.0 7 8 SPDX-License-Identifier: EPL-2.0 9 10 Contributors: 11 Evgeny Mandrikov - initial API and implementation 12--> 13<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"> 14 <modelVersion>4.0.0</modelVersion> 15 16 <parent> 17 <groupId>org.jacoco</groupId> 18 <artifactId>org.jacoco.core.test.validation</artifactId> 19 <version>0.8.7</version> 20 <relativePath>../org.jacoco.core.test.validation</relativePath> 21 </parent> 22 23 <artifactId>org.jacoco.core.test.validation.scala</artifactId> 24 25 <name>JaCoCo :: Test :: Core :: Validation Scala</name> 26 27 <properties> 28 <scala.version>2.13.4</scala.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.scala-lang</groupId> 39 <artifactId>scala-library</artifactId> 40 <version>${scala.version}</version> 41 </dependency> 42 </dependencies> 43 44 <build> 45 <plugins> 46 <plugin> 47 <groupId>net.alchim31.maven</groupId> 48 <artifactId>scala-maven-plugin</artifactId> 49 <version>4.4.0</version> 50 <executions> 51 <execution> 52 <id>compile</id> 53 <phase>process-sources</phase> 54 <goals> 55 <goal>compile</goal> 56 </goals> 57 </execution> 58 </executions> 59 </plugin> 60 </plugins> 61 </build> 62</project> 63