Move memory post reply builder to its own file.
[Sone.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/xsd/maven-4.0.0.xsd">
2         <modelVersion>4.0.0</modelVersion>
3         <groupId>net.pterodactylus</groupId>
4         <artifactId>sone</artifactId>
5         <version>0.8.4</version>
6         <dependencies>
7                 <dependency>
8                         <groupId>net.pterodactylus</groupId>
9                         <artifactId>utils</artifactId>
10                         <version>0.12.3-SNAPSHOT</version>
11                 </dependency>
12                 <dependency>
13                         <groupId>junit</groupId>
14                         <artifactId>junit</artifactId>
15                         <version>3.8.2</version>
16                         <scope>test</scope>
17                 </dependency>
18                 <dependency>
19                         <groupId>org.freenetproject</groupId>
20                         <artifactId>fred</artifactId>
21                         <version>0.7.5.1405</version>
22                         <scope>provided</scope>
23                 </dependency>
24                 <dependency>
25                         <groupId>org.freenetproject</groupId>
26                         <artifactId>freenet-ext</artifactId>
27                         <version>26</version>
28                         <scope>provided</scope>
29                 </dependency>
30                 <dependency>
31                         <groupId>net.pterodactylus</groupId>
32                         <artifactId>utils.json</artifactId>
33                         <version>0.1</version>
34                 </dependency>
35                 <dependency>
36                         <groupId>com.google.inject</groupId>
37                         <artifactId>guice</artifactId>
38                         <version>3.0</version>
39                 </dependency>
40                 <dependency>
41                         <groupId>com.google.guava</groupId>
42                         <artifactId>guava</artifactId>
43                         <version>14.0-rc1</version>
44                 </dependency>
45                 <dependency>
46                         <groupId>commons-lang</groupId>
47                         <artifactId>commons-lang</artifactId>
48                         <version>2.6</version>
49                 </dependency>
50         </dependencies>
51         <repositories>
52                 <repository>
53                         <id>pterodactylus</id>
54                         <url>http://maven.pterodactylus.net/</url>
55                 </repository>
56         </repositories>
57         <properties>
58                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
59         </properties>
60         <build>
61                 <plugins>
62                         <plugin>
63                                 <groupId>org.apache.maven.plugins</groupId>
64                                 <artifactId>maven-compiler-plugin</artifactId>
65                                 <version>2.0.2</version>
66                                 <configuration>
67                                         <source>1.6</source>
68                                         <target>1.6</target>
69                                 </configuration>
70                         </plugin>
71                         <plugin>
72                                 <groupId>org.apache.maven.plugins</groupId>
73                                 <artifactId>maven-jar-plugin</artifactId>
74                                 <version>2.2</version>
75                                 <configuration>
76                                         <archive>
77                                                 <manifestEntries>
78                                                         <Plugin-Main-Class>net.pterodactylus.sone.main.SonePlugin</Plugin-Main-Class>
79                                                 </manifestEntries>
80                                         </archive>
81                                 </configuration>
82                         </plugin>
83                         <plugin>
84                                 <groupId>org.apache.maven.plugins</groupId>
85                                 <artifactId>maven-assembly-plugin</artifactId>
86                                 <version>2.2-beta-5</version>
87                                 <configuration>
88                                         <descriptorRefs>
89                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
90                                         </descriptorRefs>
91                                         <archiverConfig>
92                                                 <duplicateBehavior>skip</duplicateBehavior>
93                                         </archiverConfig>
94                                         <archive>
95                                                 <manifestEntries>
96                                                         <Plugin-Main-Class>net.pterodactylus.sone.main.SonePlugin</Plugin-Main-Class>
97                                                 </manifestEntries>
98                                         </archive>
99                                 </configuration>
100                                 <executions>
101                                         <execution>
102                                                 <id>make-assembly</id>
103                                                 <phase>package</phase>
104                                                 <goals>
105                                                         <goal>single</goal>
106                                                 </goals>
107                                         </execution>
108                                 </executions>
109                         </plugin>
110                         <plugin>
111                                 <groupId>org.apache.maven.plugins</groupId>
112                                 <artifactId>maven-javadoc-plugin</artifactId>
113                                 <version>2.7</version>
114                                 <configuration>
115                                         <detectLinks>true</detectLinks>
116                                         <detectJavaApiLink>true</detectJavaApiLink>
117                                         <show>private</show>
118                                         <footer>© 2010–2013 David ‘Bombe’ Roden</footer>
119                                 </configuration>
120                         </plugin>
121                 </plugins>
122         </build>
123 </project>