Add fred dependency.
[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.0.1-SNAPSHOT</version>
6         <dependencies>
7                 <dependency>
8                         <groupId>net.pterodactylus</groupId>
9                         <artifactId>utils</artifactId>
10                         <version>0.6.2-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.1292-SNAPSHOT</version>
22                         <scope>provided</scope>
23                 </dependency>
24         </dependencies>
25         <build>
26                 <plugins>
27                         <plugin>
28                                 <groupId>org.apache.maven.plugins</groupId>
29                                 <artifactId>maven-compiler-plugin</artifactId>
30                                 <configuration>
31                                         <source>1.6</source>
32                                         <target>1.6</target>
33                                 </configuration>
34                         </plugin>
35                         <plugin>
36                                 <groupId>org.apache.maven.plugins</groupId>
37                                 <artifactId>maven-jar-plugin</artifactId>
38                                 <configuration>
39                                         <archive>
40                                                 <manifestEntries>
41                                                         <Plugin-Main-Class>net.pterodactylus.sone.main.SonePlugin</Plugin-Main-Class>
42                                                 </manifestEntries>
43                                         </archive>
44                                 </configuration>
45                         </plugin>
46                         <plugin>
47                                 <groupId>org.apache.maven.plugins</groupId>
48                                 <artifactId>maven-assembly-plugin</artifactId>
49                                 <configuration>
50                                         <descriptorRefs>
51                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
52                                         </descriptorRefs>
53                                         <archive>
54                                                 <manifestEntries>
55                                                         <Plugin-Main-Class>net.pterodactylus.sone.main.SonePlugin</Plugin-Main-Class>
56                                                 </manifestEntries>
57                                         </archive>
58                                 </configuration>
59                                 <executions>
60                                         <execution>
61                                                 <id>make-assembly</id>
62                                                 <phase>package</phase>
63                                                 <goals>
64                                                         <goal>single</goal>
65                                                 </goals>
66                                         </execution>
67                                 </executions>
68                         </plugin>
69                 </plugins>
70         </build>
71 </project>