Ignore Maven’s “target” directory.
[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.1</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         </dependencies>
19         <build>
20                 <plugins>
21                         <plugin>
22                                 <groupId>org.apache.maven.plugins</groupId>
23                                 <artifactId>maven-compiler-plugin</artifactId>
24                                 <configuration>
25                                         <source>1.6</source>
26                                         <target>1.6</target>
27                                 </configuration>
28                         </plugin>
29                         <plugin>
30                                 <groupId>org.apache.maven.plugins</groupId>
31                                 <artifactId>maven-jar-plugin</artifactId>
32                                 <configuration>
33                                         <archive>
34                                                 <manifestEntries>
35                                                         <mode>Plugin-Main-Class</mode>
36                                                         <url>net.pterodactylus.sone.main.SonePlugin</url>
37                                                 </manifestEntries>
38                                         </archive>
39                                 </configuration>
40                         </plugin>
41                 </plugins>
42         </build>
43 </project>