Include findbugs plugin.
[rhynodge.git] / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4         <groupId>net.pterodactylus</groupId>
5         <artifactId>rhynodge</artifactId>
6         <version>0.1</version>
7         <properties>
8                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
9         </properties>
10         <build>
11                 <plugins>
12                         <plugin>
13                                 <groupId>org.codehaus.mojo</groupId>
14                                 <artifactId>findbugs-maven-plugin</artifactId>
15                                 <version>2.5.2</version>
16                                 <configuration>
17                                         <timeout>${findbugs.timeout}</timeout>
18                                 </configuration>
19                         </plugin>
20                         <plugin>
21                                 <artifactId>maven-compiler-plugin</artifactId>
22                                 <version>2.3.2</version>
23                                 <configuration>
24                                         <source>1.6</source>
25                                         <target>1.6</target>
26                                 </configuration>
27                         </plugin>
28                         <plugin>
29                                 <groupId>org.codehaus.mojo</groupId>
30                                 <artifactId>exec-maven-plugin</artifactId>
31                                 <version>1.2.1</version>
32                                 <configuration>
33                                         <mainClass>net.pterodactylus.rhynodge.engine.Starter</mainClass>
34                                 </configuration>
35                         </plugin>
36                 </plugins>
37         </build>
38         <dependencies>
39                 <dependency>
40                         <groupId>com.google.guava</groupId>
41                         <artifactId>guava</artifactId>
42                         <version>14.0-rc1</version>
43                 </dependency>
44                 <dependency>
45                         <groupId>log4j</groupId>
46                         <artifactId>log4j</artifactId>
47                         <version>1.2.17</version>
48                 </dependency>
49                 <dependency>
50                         <groupId>org.apache.httpcomponents</groupId>
51                         <artifactId>httpclient</artifactId>
52                         <version>4.2.2</version>
53                 </dependency>
54                 <dependency>
55                         <groupId>org.jsoup</groupId>
56                         <artifactId>jsoup</artifactId>
57                         <version>1.7.1</version>
58                 </dependency>
59                 <dependency>
60                         <groupId>javax.mail</groupId>
61                         <artifactId>mail</artifactId>
62                         <version>1.4.6-rc1</version>
63                 </dependency>
64                 <dependency>
65                         <groupId>org.apache.commons</groupId>
66                         <artifactId>commons-lang3</artifactId>
67                         <version>3.1</version>
68                 </dependency>
69                 <dependency>
70                         <groupId>com.fasterxml.jackson.core</groupId>
71                         <artifactId>jackson-core</artifactId>
72                         <version>2.1.2</version>
73                 </dependency>
74                 <dependency>
75                         <groupId>com.fasterxml.jackson.core</groupId>
76                         <artifactId>jackson-annotations</artifactId>
77                         <version>2.1.2</version>
78                 </dependency>
79                 <dependency>
80                         <groupId>com.fasterxml.jackson.core</groupId>
81                         <artifactId>jackson-databind</artifactId>
82                         <version>2.1.2</version>
83                 </dependency>
84                 <dependency>
85                         <groupId>com.lexicalscope.jewelcli</groupId>
86                         <artifactId>jewelcli</artifactId>
87                         <version>0.8.3</version>
88                 </dependency>
89         </dependencies>
90 </project>