Change comments.
[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.0.1-SNAPSHOT</version>
7         <properties>
8                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
9         </properties>
10         <build>
11                 <plugins>
12                         <plugin>
13                                 <artifactId>maven-compiler-plugin</artifactId>
14                                 <version>2.3.2</version>
15                                 <configuration>
16                                         <source>1.6</source>
17                                         <target>1.6</target>
18                                 </configuration>
19                         </plugin>
20                         <plugin>
21                                 <groupId>org.codehaus.mojo</groupId>
22                                 <artifactId>exec-maven-plugin</artifactId>
23                                 <version>1.2.1</version>
24                                 <configuration>
25                                         <mainClass>net.pterodactylus.rhynodge.engine.Starter</mainClass>
26                                 </configuration>
27                         </plugin>
28                 </plugins>
29         </build>
30         <dependencies>
31                 <dependency>
32                         <groupId>com.google.guava</groupId>
33                         <artifactId>guava</artifactId>
34                         <version>14.0-rc1</version>
35                 </dependency>
36                 <dependency>
37                         <groupId>log4j</groupId>
38                         <artifactId>log4j</artifactId>
39                         <version>1.2.17</version>
40                 </dependency>
41                 <dependency>
42                         <groupId>org.apache.httpcomponents</groupId>
43                         <artifactId>httpclient</artifactId>
44                         <version>4.2.2</version>
45                 </dependency>
46                 <dependency>
47                         <groupId>org.jsoup</groupId>
48                         <artifactId>jsoup</artifactId>
49                         <version>1.7.1</version>
50                 </dependency>
51                 <dependency>
52                         <groupId>javax.mail</groupId>
53                         <artifactId>mail</artifactId>
54                         <version>1.4.6-rc1</version>
55                 </dependency>
56                 <dependency>
57                         <groupId>org.apache.commons</groupId>
58                         <artifactId>commons-lang3</artifactId>
59                         <version>3.1</version>
60                 </dependency>
61                 <dependency>
62                         <groupId>com.fasterxml.jackson.core</groupId>
63                         <artifactId>jackson-core</artifactId>
64                         <version>2.1.2</version>
65                 </dependency>
66                 <dependency>
67                         <groupId>com.fasterxml.jackson.core</groupId>
68                         <artifactId>jackson-annotations</artifactId>
69                         <version>2.1.2</version>
70                 </dependency>
71                 <dependency>
72                         <groupId>com.fasterxml.jackson.core</groupId>
73                         <artifactId>jackson-databind</artifactId>
74                         <version>2.1.2</version>
75                 </dependency>
76                 <dependency>
77                         <groupId>com.lexicalscope.jewelcli</groupId>
78                         <artifactId>jewelcli</artifactId>
79                         <version>0.8.3</version>
80                 </dependency>
81         </dependencies>
82 </project>