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