Add new “quelaton” FCP client API
[jFCPlib.git] / pom.xml
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>
6         <name>jFCPlib</name>
7         <packaging>jar</packaging>
8         <distributionManagement>
9                 <repository>
10                         <id>pterodactylus</id>
11                         <name>pterodactylus.net Maven Repository</name>
12                         <url>scp://maven@maven.pterodactylus.net/home/maven/repository</url>
13                 </repository>
14         </distributionManagement>
15         <dependencies>
16                 <dependency>
17                         <groupId>junit</groupId>
18                         <artifactId>junit</artifactId>
19                         <version>4.12</version>
20                         <scope>test</scope>
21                 </dependency>
22                 <dependency>
23                         <groupId>org.hamcrest</groupId>
24                         <artifactId>hamcrest-integration</artifactId>
25                         <version>1.3</version>
26                 </dependency>
27                 <dependency>
28                         <groupId>org.mockito</groupId>
29                         <artifactId>mockito-all</artifactId>
30                         <version>1.10.19</version>
31                 </dependency>
32                 <dependency>
33                         <groupId>com.google.guava</groupId>
34                         <artifactId>guava</artifactId>
35                         <version>16.0.1</version>
36                 </dependency>
37         </dependencies>
38         <repositories>
39                 <repository>
40                         <id>pterodactylus</id>
41                         <name>pterodactylus.net Maven Repository</name>
42                         <url>http://maven.pterodactylus.net</url>
43                 </repository>
44         </repositories>
45         <properties>
46                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
47         </properties>
48         <build>
49                 <plugins>
50                         <plugin>
51                                 <groupId>org.apache.maven.plugins</groupId>
52                                 <artifactId>maven-compiler-plugin</artifactId>
53                                 <configuration>
54                                         <source>1.8</source>
55                                         <target>1.8</target>
56                                         <encoding>UTF-8</encoding>
57                                 </configuration>
58                         </plugin>
59                         <plugin>
60                                 <groupId>org.apache.maven.plugins</groupId>
61                                 <artifactId>maven-javadoc-plugin</artifactId>
62                                 <executions>
63                                         <execution>
64                                                 <id>attach-javadocs</id>
65                                                 <goals>
66                                                         <goal>jar</goal>
67                                                 </goals>
68                                         </execution>
69                                 </executions>
70                         </plugin>
71                         <plugin>
72                                 <groupId>org.apache.maven.plugins</groupId>
73                                 <artifactId>maven-source-plugin</artifactId>
74                                 <executions>
75                                         <execution>
76                                                 <id>attach-sources</id>
77                                                 <goals>
78                                                         <goal>jar</goal>
79                                                 </goals>
80                                         </execution>
81                                 </executions>
82                         </plugin>
83                         <plugin>
84                                 <groupId>org.jacoco</groupId>
85                                 <artifactId>jacoco-maven-plugin</artifactId>
86                                 <version>0.7.1.201405082137</version>
87                                 <executions>
88                                         <execution>
89                                                 <id>default-prepare-agent</id>
90                                                 <goals>
91                                                         <goal>prepare-agent</goal>
92                                                 </goals>
93                                         </execution>
94                                         <execution>
95                                                 <id>default-report</id>
96                                                 <phase>prepare-package</phase>
97                                                 <goals>
98                                                         <goal>report</goal>
99                                                 </goals>
100                                         </execution>
101                                         <execution>
102                                                 <id>default-check</id>
103                                                 <phase/>
104                                                 <goals>
105                                                         <goal>check</goal>
106                                                 </goals>
107                                                 <configuration>
108                                                         <rules>
109                                                                 <!--  implmentation is needed only for Maven 2  -->
110                                                                 <rule implementation="org.jacoco.maven.RuleConfiguration">
111                                                                         <element>BUNDLE</element>
112                                                                         <limits>
113                                                                                 <!--  implmentation is needed only for Maven 2  -->
114                                                                                 <limit implementation="org.jacoco.report.check.Limit">
115                                                                                         <counter>COMPLEXITY</counter>
116                                                                                         <value>COVEREDRATIO</value>
117                                                                                         <minimum>0.60</minimum>
118                                                                                 </limit>
119                                                                         </limits>
120                                                                 </rule>
121                                                         </rules>
122                                                 </configuration>
123                                         </execution>
124                                 </executions>
125                         </plugin>
126                 </plugins>
127         </build>
128 </project>