Use Java 1.8, and its Optional.
[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.8</source>
25                                         <target>1.8</target>
26                                 </configuration>
27                         </plugin>
28                         <plugin>
29                                 <groupId>org.apache.maven.plugins</groupId>
30                                 <artifactId>maven-assembly-plugin</artifactId>
31                                 <version>2.2-beta-5</version>
32                                 <configuration>
33                                         <descriptorRefs>
34                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
35                                         </descriptorRefs>
36                                         <archiverConfig>
37                                                 <duplicateBehavior>skip</duplicateBehavior>
38                                         </archiverConfig>
39                                         <archive>
40                                                 <manifest>
41                                                         <mainClass>net.pterodactylus.rhynodge.engine.Starter</mainClass>
42                                                 </manifest>
43                                         </archive>
44                                 </configuration>
45                                 <executions>
46                                         <execution>
47                                                 <id>make-assembly</id>
48                                                 <phase>package</phase>
49                                                 <goals>
50                                                         <goal>single</goal>
51                                                 </goals>
52                                         </execution>
53                                 </executions>
54                         </plugin>
55                         <plugin>
56                                 <groupId>org.codehaus.mojo</groupId>
57                                 <artifactId>exec-maven-plugin</artifactId>
58                                 <version>1.2.1</version>
59                                 <configuration>
60                                         <mainClass>net.pterodactylus.rhynodge.engine.Starter</mainClass>
61                                 </configuration>
62                         </plugin>
63                 </plugins>
64         </build>
65
66         <reporting>
67                 <plugins>
68                         <plugin>
69                                 <groupId>org.codehaus.mojo</groupId>
70                                 <artifactId>emma-maven-plugin</artifactId>
71                                 <version>1.0-alpha-3</version>
72                         </plugin>
73                 </plugins>
74         </reporting>
75
76         <dependencies>
77                 <dependency>
78                         <groupId>junit</groupId>
79                         <artifactId>junit</artifactId>
80                         <version>4.11</version>
81                         <scope>test</scope>
82                 </dependency>
83                 <dependency>
84                         <groupId>org.hamcrest</groupId>
85                         <artifactId>hamcrest-library</artifactId>
86                         <version>1.3</version>
87                         <scope>test</scope>
88                 </dependency>
89                 <dependency>
90                         <groupId>org.mockito</groupId>
91                         <artifactId>mockito-all</artifactId>
92                         <version>1.9.5</version>
93                         <scope>test</scope>
94                 </dependency>
95                 <dependency>
96                         <groupId>com.google.guava</groupId>
97                         <artifactId>guava</artifactId>
98                         <version>14.0-rc1</version>
99                 </dependency>
100                 <dependency>
101                         <groupId>log4j</groupId>
102                         <artifactId>log4j</artifactId>
103                         <version>1.2.17</version>
104                 </dependency>
105                 <dependency>
106                         <groupId>org.apache.httpcomponents</groupId>
107                         <artifactId>httpclient</artifactId>
108                         <version>4.2.2</version>
109                 </dependency>
110                 <dependency>
111                         <groupId>org.jsoup</groupId>
112                         <artifactId>jsoup</artifactId>
113                         <version>1.7.1</version>
114                 </dependency>
115                 <dependency>
116                         <groupId>javax.mail</groupId>
117                         <artifactId>mail</artifactId>
118                         <version>1.4.6-rc1</version>
119                 </dependency>
120                 <dependency>
121                         <groupId>org.apache.commons</groupId>
122                         <artifactId>commons-lang3</artifactId>
123                         <version>3.1</version>
124                 </dependency>
125                 <dependency>
126                         <groupId>com.fasterxml.jackson.core</groupId>
127                         <artifactId>jackson-core</artifactId>
128                         <version>2.1.2</version>
129                 </dependency>
130                 <dependency>
131                         <groupId>com.fasterxml.jackson.core</groupId>
132                         <artifactId>jackson-annotations</artifactId>
133                         <version>2.1.2</version>
134                 </dependency>
135                 <dependency>
136                         <groupId>com.fasterxml.jackson.core</groupId>
137                         <artifactId>jackson-databind</artifactId>
138                         <version>2.1.2</version>
139                 </dependency>
140                 <dependency>
141                         <groupId>com.lexicalscope.jewelcli</groupId>
142                         <artifactId>jewelcli</artifactId>
143                         <version>0.8.3</version>
144                 </dependency>
145         </dependencies>
146 </project>