Follow redirects in ClientGet
[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.nitorcreations</groupId>
34                         <artifactId>junit-runners</artifactId>
35                         <version>1.2</version>
36                         <scope>test</scope>
37                 </dependency>
38                 <dependency>
39                         <groupId>com.google.guava</groupId>
40                         <artifactId>guava</artifactId>
41                         <version>16.0.1</version>
42                 </dependency>
43         </dependencies>
44         <repositories>
45                 <repository>
46                         <id>pterodactylus</id>
47                         <name>pterodactylus.net Maven Repository</name>
48                         <url>http://maven.pterodactylus.net</url>
49                 </repository>
50         </repositories>
51         <properties>
52                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
53                 <plugin.compiler.version>3.3</plugin.compiler.version>
54                 <plugin.source.version>2.4</plugin.source.version>
55                 <plugin.javadoc.version>2.10.3</plugin.javadoc.version>
56                 <plugin.jacoco.version>0.7.1.201405082137</plugin.jacoco.version>
57         </properties>
58         <build>
59                 <plugins>
60                         <plugin>
61                                 <groupId>org.apache.maven.plugins</groupId>
62                                 <artifactId>maven-compiler-plugin</artifactId>
63                                 <version>${plugin.compiler.version}</version>
64                                 <configuration>
65                                         <source>1.8</source>
66                                         <target>1.8</target>
67                                         <encoding>UTF-8</encoding>
68                                 </configuration>
69                         </plugin>
70                         <plugin>
71                                 <groupId>org.apache.maven.plugins</groupId>
72                                 <artifactId>maven-javadoc-plugin</artifactId>
73                                 <version>${plugin.javadoc.version}</version>
74                                 <configuration>
75                                         <detectLinks>true</detectLinks>
76                                         <links>
77                                                 <link>http://docs.guava-libraries.googlecode.com/git-history/v18.0/javadoc/</link>
78                                         </links>
79                                 </configuration>
80                                 <executions>
81                                         <execution>
82                                                 <id>attach-javadocs</id>
83                                                 <goals>
84                                                         <goal>jar</goal>
85                                                 </goals>
86                                         </execution>
87                                 </executions>
88                         </plugin>
89                         <plugin>
90                                 <groupId>org.apache.maven.plugins</groupId>
91                                 <artifactId>maven-source-plugin</artifactId>
92                                 <version>${plugin.source.version}</version>
93                                 <executions>
94                                         <execution>
95                                                 <id>attach-sources</id>
96                                                 <goals>
97                                                         <goal>jar</goal>
98                                                 </goals>
99                                         </execution>
100                                 </executions>
101                         </plugin>
102                         <plugin>
103                                 <groupId>org.jacoco</groupId>
104                                 <artifactId>jacoco-maven-plugin</artifactId>
105                                 <version>${plugin.jacoco.version}</version>
106                                 <executions>
107                                         <execution>
108                                                 <id>default-prepare-agent</id>
109                                                 <goals>
110                                                         <goal>prepare-agent</goal>
111                                                 </goals>
112                                         </execution>
113                                         <execution>
114                                                 <id>default-report</id>
115                                                 <phase>prepare-package</phase>
116                                                 <goals>
117                                                         <goal>report</goal>
118                                                 </goals>
119                                         </execution>
120                                         <execution>
121                                                 <id>default-check</id>
122                                                 <phase/>
123                                                 <goals>
124                                                         <goal>check</goal>
125                                                 </goals>
126                                         </execution>
127                                 </executions>
128                         </plugin>
129                 </plugins>
130         </build>
131 </project>