1 <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">
2 <modelVersion>4.0.0</modelVersion>
3 <groupId>net.pterodactylus</groupId>
4 <artifactId>jFCPlib</artifactId>
5 <version>0.2-SNAPSHOT</version>
7 <packaging>jar</packaging>
8 <distributionManagement>
10 <id>pterodactylus</id>
11 <name>pterodactylus.net Maven Repository</name>
12 <url>scp://maven@maven.pterodactylus.net/home/maven/repository</url>
14 </distributionManagement>
17 <groupId>junit</groupId>
18 <artifactId>junit</artifactId>
19 <version>4.12</version>
23 <groupId>org.hamcrest</groupId>
24 <artifactId>hamcrest-integration</artifactId>
25 <version>1.3</version>
28 <groupId>org.mockito</groupId>
29 <artifactId>mockito-all</artifactId>
30 <version>1.10.19</version>
33 <groupId>com.google.guava</groupId>
34 <artifactId>guava</artifactId>
35 <version>16.0.1</version>
40 <id>pterodactylus</id>
41 <name>pterodactylus.net Maven Repository</name>
42 <url>http://maven.pterodactylus.net</url>
46 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
47 <plugin.compiler.version>3.3</plugin.compiler.version>
48 <plugin.source.version>2.4</plugin.source.version>
49 <plugin.javadoc.version>2.10.3</plugin.javadoc.version>
50 <plugin.jacoco.version>0.7.1.201405082137</plugin.jacoco.version>
55 <groupId>org.apache.maven.plugins</groupId>
56 <artifactId>maven-compiler-plugin</artifactId>
57 <version>${plugin.compiler.version}</version>
61 <encoding>UTF-8</encoding>
65 <groupId>org.apache.maven.plugins</groupId>
66 <artifactId>maven-javadoc-plugin</artifactId>
67 <version>${plugin.javadoc.version}</version>
69 <detectLinks>true</detectLinks>
71 <link>http://docs.guava-libraries.googlecode.com/git-history/v18.0/javadoc/</link>
76 <id>attach-javadocs</id>
84 <groupId>org.apache.maven.plugins</groupId>
85 <artifactId>maven-source-plugin</artifactId>
86 <version>${plugin.source.version}</version>
89 <id>attach-sources</id>
97 <groupId>org.jacoco</groupId>
98 <artifactId>jacoco-maven-plugin</artifactId>
99 <version>${plugin.jacoco.version}</version>
102 <id>default-prepare-agent</id>
104 <goal>prepare-agent</goal>
108 <id>default-report</id>
109 <phase>prepare-package</phase>
115 <id>default-check</id>
122 <!-- implmentation is needed only for Maven 2 -->
123 <rule implementation="org.jacoco.maven.RuleConfiguration">
124 <element>BUNDLE</element>
126 <!-- implmentation is needed only for Maven 2 -->
127 <limit implementation="org.jacoco.report.check.Limit">
128 <counter>COMPLEXITY</counter>
129 <value>COVEREDRATIO</value>
130 <minimum>0.60</minimum>