Store locality of a Sone in the Sone itself.
[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.guava</groupId>
37                         <artifactId>guava</artifactId>
38                         <version>14.0-rc1</version>
39                 </dependency>
40         </dependencies>
41         <repositories>
42                 <repository>
43                         <id>pterodactylus</id>
44                         <url>http://maven.pterodactylus.net/</url>
45                 </repository>
46         </repositories>
47         <properties>
48                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
49         </properties>
50         <build>
51                 <plugins>
52                         <plugin>
53                                 <groupId>org.apache.maven.plugins</groupId>
54                                 <artifactId>maven-compiler-plugin</artifactId>
55                                 <version>2.0.2</version>
56                                 <configuration>
57                                         <source>1.6</source>
58                                         <target>1.6</target>
59                                 </configuration>
60                         </plugin>
61                         <plugin>
62                                 <groupId>org.apache.maven.plugins</groupId>
63                                 <artifactId>maven-jar-plugin</artifactId>
64                                 <version>2.2</version>
65                                 <configuration>
66                                         <archive>
67                                                 <manifestEntries>
68                                                         <Plugin-Main-Class>net.pterodactylus.sone.main.SonePlugin</Plugin-Main-Class>
69                                                 </manifestEntries>
70                                         </archive>
71                                 </configuration>
72                         </plugin>
73                         <plugin>
74                                 <groupId>org.apache.maven.plugins</groupId>
75                                 <artifactId>maven-assembly-plugin</artifactId>
76                                 <version>2.2-beta-5</version>
77                                 <configuration>
78                                         <descriptorRefs>
79                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
80                                         </descriptorRefs>
81                                         <archiverConfig>
82                                                 <duplicateBehavior>skip</duplicateBehavior>
83                                         </archiverConfig>
84                                         <archive>
85                                                 <manifestEntries>
86                                                         <Plugin-Main-Class>net.pterodactylus.sone.main.SonePlugin</Plugin-Main-Class>
87                                                 </manifestEntries>
88                                         </archive>
89                                 </configuration>
90                                 <executions>
91                                         <execution>
92                                                 <id>make-assembly</id>
93                                                 <phase>package</phase>
94                                                 <goals>
95                                                         <goal>single</goal>
96                                                 </goals>
97                                         </execution>
98                                 </executions>
99                         </plugin>
100                 </plugins>
101         </build>
102         <reporting>
103                 <plugins>
104                         <plugin>
105                                 <groupId>org.apache.maven.plugins</groupId>
106                                 <artifactId>maven-javadoc-plugin</artifactId>
107                                 <version>2.7</version>
108                                 <configuration>
109                                         <links>
110                                                 <link>http://download.oracle.com/javase/6/docs/api/</link>
111                                                 <link>http://java.pterodactylus.net/utils/apidocs/</link>
112                                                 <link>http://java.pterodactylus.net/utils.json/apidocs/</link>
113                                         </links>
114                                 </configuration>
115                         </plugin>
116                 </plugins>
117         </reporting>
118 </project>