-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpom.xml
More file actions
47 lines (42 loc) · 1.93 KB
/
pom.xml
File metadata and controls
47 lines (42 loc) · 1.93 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="UTF-8"?>
<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/xsd/maven-4.0.0.xsd">
<modelVersion>4.0.0</modelVersion>
<groupId>com.mars</groupId>
<artifactId>java-scala-code-coverage-parent</artifactId>
<version>0.0.1-SNAPSHOT</version>
<packaging>pom</packaging>
<name>Example of Java and Scala Project Code Coverage via Maven</name>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
<scala.version>2.11.12</scala.version>
<compiler.plugin.version>3.8.1</compiler.plugin.version>
<project-info-reports.plugin.version>3.0.0</project-info-reports.plugin.version>
<site.plugin.version>3.8.2</site.plugin.version>
<surefire.plugin.version>2.22.2</surefire.plugin.version>
<scala.plugin.version>4.1.1</scala.plugin.version>
<scoverage.plugin.version>1.4.0-RC1</scoverage.plugin.version>
<scalatest.plugin.version>2.0.0</scalatest.plugin.version>
<cobertura.maven.plugin.version>2.7</cobertura.maven.plugin.version>
</properties>
<modules>
<module>scala-example</module>
<module>java-example</module>
<module>java-scala-in-one-project</module>
</modules>
<build>
<pluginManagement>
<plugins>
<plugin>
<groupId>org.apache.maven.plugins</groupId>
<artifactId>maven-site-plugin</artifactId>
<version>${site.plugin.version}</version>
<configuration>
<skip>true</skip>
</configuration>
</plugin>
</plugins>
</pluginManagement>
</build>
</project>