Fix parsing of boolean value
[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                 <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>
51         </properties>
52         <build>
53                 <plugins>
54                         <plugin>
55                                 <groupId>org.apache.maven.plugins</groupId>
56                                 <artifactId>maven-compiler-plugin</artifactId>
57                                 <version>${plugin.compiler.version}</version>
58                                 <configuration>
59                                         <source>1.8</source>
60                                         <target>1.8</target>
61                                         <encoding>UTF-8</encoding>
62                                 </configuration>
63                         </plugin>
64                         <plugin>
65                                 <groupId>org.apache.maven.plugins</groupId>
66                                 <artifactId>maven-javadoc-plugin</artifactId>
67                                 <version>${plugin.javadoc.version}</version>
68                                 <configuration>
69                                         <detectLinks>true</detectLinks>
70                                         <links>
71                                                 <link>http://docs.guava-libraries.googlecode.com/git-history/v18.0/javadoc/</link>
72                                         </links>
73                                 </configuration>
74                                 <executions>
75                                         <execution>
76                                                 <id>attach-javadocs</id>
77                                                 <goals>
78                                                         <goal>jar</goal>
79                                                 </goals>
80                                         </execution>
81                                 </executions>
82                         </plugin>
83                         <plugin>
84                                 <groupId>org.apache.maven.plugins</groupId>
85                                 <artifactId>maven-source-plugin</artifactId>
86                                 <version>${plugin.source.version}</version>
87                                 <executions>
88                                         <execution>
89                                                 <id>attach-sources</id>
90                                                 <goals>
91                                                         <goal>jar</goal>
92                                                 </goals>
93                                         </execution>
94                                 </executions>
95                         </plugin>
96                         <plugin>
97                                 <groupId>org.jacoco</groupId>
98                                 <artifactId>jacoco-maven-plugin</artifactId>
99                                 <version>${plugin.jacoco.version}</version>
100                                 <executions>
101                                         <execution>
102                                                 <id>default-prepare-agent</id>
103                                                 <goals>
104                                                         <goal>prepare-agent</goal>
105                                                 </goals>
106                                         </execution>
107                                         <execution>
108                                                 <id>default-report</id>
109                                                 <phase>prepare-package</phase>
110                                                 <goals>
111                                                         <goal>report</goal>
112                                                 </goals>
113                                         </execution>
114                                         <execution>
115                                                 <id>default-check</id>
116                                                 <phase/>
117                                                 <goals>
118                                                         <goal>check</goal>
119                                                 </goals>
120                                         </execution>
121                                 </executions>
122                         </plugin>
123                 </plugins>
124         </build>
125 </project>