]> git.sesse.net Git - vlc/blob - bindings/java/samples/client/pom.xml
centralize maven compiler plugin
[vlc] / bindings / java / samples / client / pom.xml
1 <?xml version="1.0" encoding="UTF-8"?>
2 <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/maven-v4_0_0.xsd ">
3   <modelVersion>4.0.0</modelVersion>
4   <parent>
5     <groupId>org.videolan</groupId>
6     <artifactId>jvlc-samples</artifactId>
7     <version>0.9.0-SNAPSHOT</version>
8   </parent>
9   <groupId>org.videolan</groupId>
10   <artifactId>jvlc-samples-client</artifactId>
11   <packaging>jar</packaging>
12   <name>JVLC - Client sample</name>
13   <description>Java Bindings for VideoLAN - Client sample</description>
14   <version>0.9.0-SNAPSHOT</version>
15
16    <build>
17     <plugins>
18       <plugin>
19         <groupId>org.codehaus.mojo</groupId>
20         <artifactId>exec-maven-plugin</artifactId>
21         <executions>
22           <execution>
23             <goals>
24               <goal>java</goal>
25             </goals>
26           </execution>
27         </executions>
28         <configuration>
29           <mainClass>VlcClient</mainClass>
30         </configuration>
31       </plugin>
32     </plugins>
33   </build>
34
35   <dependencies>
36     <dependency>
37       <groupId>org.videolan</groupId>
38       <artifactId>jvlc-core</artifactId>
39       <version>${project.version}</version>
40     </dependency>
41   </dependencies>
42
43 </project>