forked from Westerdals/pgr200-eksamen-tordjon
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pom.xml
executable file
·86 lines (77 loc) · 2.61 KB
/
pom.xml
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
<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>no.kristiania.pgr200</groupId>
<artifactId>eksamen</artifactId>
<packaging>pom</packaging>
<version>0.0.1-SNAPSHOT</version>
<modules>
<module>server</module>
<module>client</module>
<module>core</module>
</modules>
<name>Eksamen PGR200</name>
<dependencies>
<dependency>
<groupId>org.logevents</groupId>
<artifactId>logevents</artifactId>
<version>0.1.7</version>
</dependency>
</dependencies>
<build>
<plugins>
<plugin>
<groupId>org.jacoco</groupId>
<artifactId>jacoco-maven-plugin</artifactId>
<version>0.8.2</version>
<executions>
<execution>
<id>jacoco-initialize</id>
<goals>
<goal>prepare-agent</goal>
</goals>
</execution>
<execution>
<id>jacoco-report</id>
<phase>test</phase>
<goals>
<goal>report</goal>
</goals>
</execution>
<execution>
<id>jacoco-check</id>
<phase>test</phase>
<goals>
<goal>check</goal>
</goals>
<configuration>
<rules>
<rule>
<element>CLASS</element>
<excludes>
<exclude>no.kristiania.pgr200.client.command.listing.ClientListSpecificTalkCommand</exclude>
<exclude>no.kristiania.pgr200.client.Shell</exclude>
<exclude>no.kristiania.pgr200.core.command.**</exclude>
<exclude>no.kristiania.pgr200.core.model.**</exclude>
<exclude>no.kristiania.pgr200.server.ServerManager</exclude>
<exclude>no.kristiania.pgr200.server.command.listing.ServerListSpecificTalkCommand</exclude>
<exclude>*Test</exclude>
</excludes>
<limits>
<limit>
<counter>LINE</counter>
<value>COVEREDRATIO</value>
<minimum>65%</minimum>
</limit>
</limits>
</rule>
</rules>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
</properties>
</project>