]> git.sesse.net Git - vlc/blob - bindings/java/samples/client/pom.xml
switch to jdk 1.5
[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         <artifactId>maven-compiler-plugin</artifactId>
20         <configuration>
21           <source>1.5</source>
22           <target>1.5</target>
23         </configuration>
24       </plugin>
25       <plugin>
26         <groupId>org.codehaus.mojo</groupId>
27         <artifactId>exec-maven-plugin</artifactId>
28         <executions>
29           <execution>
30             <goals>
31               <goal>java</goal>
32             </goals>
33           </execution>
34         </executions>
35         <configuration>
36           <mainClass>VlcClient</mainClass>
37         </configuration>
38       </plugin>
39     </plugins>
40   </build>
41
42   <dependencies>
43     <dependency>
44       <groupId>org.videolan</groupId>
45       <artifactId>jvlc-core</artifactId>
46       <version>${project.version}</version>
47     </dependency>
48   </dependencies>
49
50 </project>