Generate key without docname.
[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         <properties>
26                 <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
27         </properties>
28         <build>
29                 <plugins>
30                         <plugin>
31                                 <groupId>org.apache.maven.plugins</groupId>
32                                 <artifactId>maven-compiler-plugin</artifactId>
33                                 <configuration>
34                                         <source>1.6</source>
35                                         <target>1.6</target>
36                                 </configuration>
37                         </plugin>
38                         <plugin>
39                                 <groupId>org.apache.maven.plugins</groupId>
40                                 <artifactId>maven-jar-plugin</artifactId>
41                                 <configuration>
42                                         <archive>
43                                                 <manifestEntries>
44                                                         <Plugin-Main-Class>net.pterodactylus.sone.main.SonePlugin</Plugin-Main-Class>
45                                                 </manifestEntries>
46                                         </archive>
47                                 </configuration>
48                         </plugin>
49                         <plugin>
50                                 <groupId>org.apache.maven.plugins</groupId>
51                                 <artifactId>maven-assembly-plugin</artifactId>
52                                 <configuration>
53                                         <descriptorRefs>
54                                                 <descriptorRef>jar-with-dependencies</descriptorRef>
55                                         </descriptorRefs>
56                                         <archive>
57                                                 <manifestEntries>
58                                                         <Plugin-Main-Class>net.pterodactylus.sone.main.SonePlugin</Plugin-Main-Class>
59                                                 </manifestEntries>
60                                         </archive>
61                                 </configuration>
62                                 <executions>
63                                         <execution>
64                                                 <id>make-assembly</id>
65                                                 <phase>package</phase>
66                                                 <goals>
67                                                         <goal>single</goal>
68                                                 </goals>
69                                         </execution>
70                                 </executions>
71                         </plugin>
72                 </plugins>
73         </build>
74 </project>