]> git.xonotic.org Git - xonotic/xonotic.git/blob - misc/tools/NexuizDemoRecorder/plugins/sample/pom.xml
Merge branch 'master' of ssh://git.xonotic.org/xonotic
[xonotic/xonotic.git] / misc / tools / NexuizDemoRecorder / plugins / sample / pom.xml
1 <project xmlns="http://maven.apache.org/POM/4.0.0" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
2         xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/maven-v4_0_0.xsd">
3         <modelVersion>4.0.0</modelVersion>
4         <groupId>NexuizDemoRecorder</groupId>
5         <artifactId>SamplePlugin</artifactId>
6         <version>0.0.1-SNAPSHOT</version>
7         <dependencies>
8                 <dependency>
9                         <groupId>NexuizDemoRecorder</groupId>
10                         <artifactId>NexuizDemoRecorder</artifactId>
11                         <version>0.3</version>
12                         <scope>provided</scope>
13                 </dependency>
14         </dependencies>
15         <build>
16                 <resources>
17                         <resource>
18                                 <directory>src/main/resources</directory>
19                         </resource>
20                 </resources>
21                 <plugins>
22                         <plugin>
23                                 <groupId>org.apache.maven.plugins</groupId>
24                                 <artifactId>maven-compiler-plugin</artifactId>
25                                 <version>2.0.2</version>
26                                 <configuration>
27                                         <source>1.6</source>
28                                         <target>1.6</target>
29                                 </configuration>
30                         </plugin>
31
32
33                 </plugins>
34         </build>
35 </project>